/* BACKGROUND */
.bg-landing {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center 70%;
  transform: scale(1.8);
  filter: brightness(0.55);
  z-index: 0;
  pointer-events: none;
}

/* PAGE SHELL */
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.landing-shell {
  position: relative;
  z-index: 5;
  padding: 40px 40px 80px;
}

/* TITLE */
.landing-title-cursive {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 22px rgba(0,0,0,0.9);
}

.landing-subtitle {
  text-align: center;
  font-size: 22px;
  opacity: 0.9;
  margin-top: -10px;
  margin-bottom: 60px;
}

/* HERO LAYOUT */
.landing-hero {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* SKATER HERO BLOCK */
.hero-skater-block {
  max-width: 600px;
}

.skater-headline {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.skater-subtext {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* SKATER BUTTONS */
.skater-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-skater-main {
  padding: 16px 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  font-size: 26px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: 0 0 28px rgba(0,0,0,0.7);
  transition: 0.2s ease;
}

.btn-skater-main:hover {
  background: #ffcc00;
  transform: translateY(-3px);
}

.btn-skater-ghost {
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn-skater-ghost:hover {
  background: rgba(255,255,255,0.15);
}

/* SIDE ROLES */
.hero-side-roles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.side-card {
  background: rgba(0,0,0,0.55);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}

.side-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.side-card p {
  margin: 0 0 16px;
  opacity: 0.85;
  font-size: 14px;
}

/* SIDE BUTTONS */
.btn-side,
.btn-side-ghost {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.btn-side {
  background: #fff;
  color: #000;
}

.btn-side:hover {
  background: #ffcc00;
}

.btn-side-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}

.btn-side-ghost:hover {
  border-color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .landing-hero {
    flex-direction: column;
    align-items: center;
  }
}
