*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  background: #0c2a6e;
  color: #ffffff;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  background: linear-gradient(170deg, #0a1e5e 0%, #123d8f 40%, #1b5cbf 72%, #1a3a70 100%);
}

/* ── Layout ── */

.cover-screen {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.cover-overlay {
  width: 100%;
  max-width: 860px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px 30px;
  text-align: center;
  margin: 0 auto;
}

/* ── Title Block ── */

.title-wrap {
  padding-top: 4px;
  line-height: 1;
}

.brand-title {
  margin: 0 0 4px;
  font-size: clamp(0.85rem, 2.2vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, Helvetica, sans-serif;
}

.main-title {
  margin: 0 0 6px;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.main-title .skate {
  color: #ff7a00;
  display: inline-block;
  text-shadow: 0 3px 12px rgba(255, 100, 0, 0.4);
}

.main-title .and {
  color: #ffffff;
  display: inline-block;
  margin: 0 0.12em;
  font-size: 0.7em;
  vertical-align: middle;
  opacity: 0.85;
}

.main-title .create {
  color: #6cc4ff;
  display: inline-block;
  text-shadow: 0 3px 12px rgba(80, 160, 255, 0.4);
}

.subtitle {
  margin: 0;
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: Arial, Helvetica, sans-serif;
}

/* ── Cover Art ── */

.cover-art-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  min-height: 0;
}

.cover-art {
  display: block;
  width: 100%;
  max-width: 720px;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.38),
    0 4px 10px rgba(0, 0, 0, 0.22);
}

/* ── CTA Block ── */

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-bottom: 6px;
}

/* Skate-brand star — sharp, gritty, above button */
.star-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  fill: #ff7a00;
  stroke: #c44f00;
  stroke-width: 1.5px;
  stroke-linejoin: miter;
  filter: drop-shadow(0 2px 6px rgba(255, 100, 0, 0.5));
  animation: starSpin 6s linear infinite;
}

@keyframes starSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Start Button ── */

.start-btn {
  appearance: none;
  border: none;
  border-radius: 14px;
  background: linear-gradient(160deg, #ff8c1a 0%, #ff6000 100%);
  color: white;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-weight: 900;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 20px 32px;
  min-width: min(86vw, 340px);
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 3px 8px rgba(255, 90, 0, 0.4);
  transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.12s ease;
  animation: idlePulse 2.4s infinite ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  position: relative;
}

.start-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.start-btn:hover {
  filter: brightness(1.07);
}

.start-btn:active,
.start-btn.pressed {
  transform: scale(1.07);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.36),
    0 6px 14px rgba(255, 90, 0, 0.45);
  animation: none;
}

@keyframes idlePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.035); }
}

.tap-text {
  margin: 12px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  font-family: Arial, Helvetica, sans-serif;
}

/* ── Mobile ── */

@media (max-width: 640px) {
  .cover-overlay {
    padding: 18px 16px 26px;
  }

  .cover-art {
    max-height: 44vh;
    border-radius: 14px;
  }

  .start-btn {
    min-width: 88%;
    padding: 18px 24px;
  }

  .star-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-height: 640px) {
  .cover-art {
    max-height: 36vh;
  }

  .main-title {
    font-size: clamp(1.9rem, 6vw, 3rem);
  }
}
