/* GOG — Landing Page Styles */

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--sp-24) var(--sp-6);
}

/* Hero background with football pitch image */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.92) 100%),
    url('https://i.ibb.co/tdscC08') center center / cover no-repeat,
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(212,175,55,0.03) 80px,
      rgba(212,175,55,0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(212,175,55,0.03) 80px,
      rgba(212,175,55,0.03) 81px
    ),
    var(--bg-primary);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero__logo {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  background: linear-gradient(
    135deg,
    var(--gold-dim) 0%,
    var(--gold-primary) 40%,
    var(--gold-light) 60%,
    var(--gold-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: var(--sp-4);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-8);
}

.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(8px);
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-primary);
  line-height: 1;
  display: block;
}

.stats-bar__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works {
  padding: var(--sp-24) var(--sp-6);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: var(--sp-3);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--sp-12);
  font-size: 1rem;
}

.how-tabs {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.how-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.how-tab.active,
.how-tab:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  position: relative;
  animation: fadeSlideUp 0.5s ease both;
}

.step__number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════ */
.features {
  padding: var(--sp-24) var(--sp-6);
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  padding: var(--sp-6);
}

.feature-item__icon {
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: var(--sp-4);
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--sp-2);
}

.feature-item__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
