/* ════════════════════════════════════════════════════════════
   FIGHTSKILL — Landing Page Premium UI
   Builds on top of design.css — uses same theme tokens.
   Independent of inner app layout so the public landing page
   renders cleanly without login.
   ════════════════════════════════════════════════════════════ */

/* ── Landing Container ── */
.lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════ HEADER ═══════════════ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1.5rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid transparent;
}
.lp-header .lp-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp-header-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 1.25rem 1.5rem;
}
.lp-header .lp-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--neon);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px var(--neon-glow);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background-color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.lp-header .lp-logo:hover {
  text-shadow: 0 0 40px var(--neon-glow), 0 0 60px rgba(166, 120, 232, 0.2);
}
.lp-logo-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--neon), var(--purple));
  box-shadow: 0 0 12px var(--neon-glow);
}

/* Desktop nav */
.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lp-nav-link {
  padding: 0.55rem 1rem;
  border-radius: var(--r-sm);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
  position: relative;
}
.lp-nav-link:hover {
  color: var(--text);
}
.lp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 0.2s, width 0.2s;
}
.lp-nav-link:hover::after {
  width: 70%;
  opacity: 1;
}

/* Header actions */
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lp-lang-switcher {
  display: flex;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.2rem;
  gap: 0.15rem;
}
.lp-lang-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.lp-lang-btn:hover {
  color: var(--text);
}
.lp-lang-btn.active {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 10px var(--neon-glow);
}
.lp-login-btn {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
}
.lp-login-btn:hover {
  color: var(--text);
}

/* Hamburger (mobile) */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 34px;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0.4rem;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.lp-hamburger:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.lp-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

/* Mobile backdrop */
.lp-mobile-backdrop {
  display: none;
}
.lp-mobile-backdrop.show {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 199;
}

/* ═══════════════ HERO SECTION ═══════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
  margin-top: 60px;
}
.lp-hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}
.lp-hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(166, 120, 232, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  animation: lp-glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lp-glow-pulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.45; transform: translateX(-50%) scale(1.05); }
}

.lp-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(166, 120, 232, 0.06);
  border: 1px solid rgba(166, 120, 232, 0.15);
  color: var(--neon);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.lp-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
  animation: pulse-glow 2s infinite;
}

.lp-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.lp-line {
  color: var(--text);
}
.lp-line.neon-text {
  color: var(--neon);
  text-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(166, 120, 232, 0.2);
}

.lp-hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 580px;
}

.lp-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.lp-cta-primary, .lp-cta-secondary {
  /* inherit btn styles from design.css */
}

.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.lp-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.lp-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--neon);
  text-shadow: 0 0 15px var(--neon-glow);
}
.lp-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lp-hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.lp-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: lp-float 3s ease-in-out infinite;
  z-index: 3;
}
@keyframes lp-float {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(-8px); opacity: 1; }
}
.lp-scroll-arrow {
  font-size: 1.2rem;
  animation: lp-bounce 2s infinite;
}
@keyframes lp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ═══════════════ SECTION BASE ═══════════════ */
.lp-section {
  padding: 5rem 0;
  position: relative;
}
.lp-section-alt {
  background: var(--surface);
}
.lp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.lp-section-head-center {
  justify-content: center;
  text-align: center;
}
.lp-section-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.lp-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.lp-section-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}
.lp-section-head-center .lp-section-desc {
  margin: 0 auto;
}

.lp-view-all {
  color: var(--neon);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
  letter-spacing: 0.03em;
}
.lp-view-all:hover {
  transform: translateX(3px);
  color: var(--neon-dim);
}

/* ═══════════════ TOURNAMENT CARDS ═══════════════ */
.lp-tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.lp-tournament-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.lp-tournament-card:hover {
  transform: translateY(-6px);
  border-color: rgba(166, 120, 232, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(166, 120, 232, 0.1);
}
.lp-tournament-art {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.lp-tournament-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-tournament-card:hover .lp-tournament-art img {
  transform: scale(1.08);
}
.lp-tournament-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 10, 13, 0.2) 0%, rgba(8, 10, 13, 0.8) 100%);
  z-index: 1;
}
.lp-tournament-art-badges {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  right: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  gap: 0.4rem;
}
.lp-tournament-logo {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  z-index: 2;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.lp-tournament-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp-tournament-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.lp-tournament-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.lp-tournament-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  font-size: 0.8rem;
}
.lp-tournament-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.lp-info-label {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.lp-info-value {
  color: var(--text);
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
}
.lp-info-max {
  opacity: 0.5;
  font-weight: 400;
}

.lp-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lp-progress-bar {
  flex: 1;
  height: 5px;
  background: var(--surface2);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.lp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--neon-dim));
  border-radius: 5px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-progress-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon);
  min-width: 36px;
  text-align: right;
}

.lp-countdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}
.lp-countdown-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--neon);
}

.lp-tournament-action {
  margin-top: auto;
}
.lp-tournament-btn {
  width: 100%;
}

/* ═══════════════ GAME CARDS ═══════════════ */
.lp-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}
.lp-game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lp-game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 120, 232, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(166, 120, 232, 0.12);
}
.lp-game-art {
  position: relative;
  height: 150px;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg2), var(--surface2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-game-card:hover .lp-game-art img {
  transform: scale(1.08);
}
.lp-game-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 10, 13, 0.5) 0%, rgba(8, 10, 13, 0.9) 100%);
}
.lp-game-icon {
  position: absolute;
  font-size: 2.2rem;
  z-index: 2;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.lp-game-badge-count {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  background: rgba(166, 120, 232, 0.1);
  border: 1px solid rgba(166, 120, 232, 0.2);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  color: var(--neon);
  font-weight: 600;
}
.lp-game-count-num {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}
.lp-game-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lp-game-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.lp-game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.lp-game-mode-count {
  color: var(--text-dim);
}
.lp-game-play {
  color: var(--neon);
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 0.2s var(--ease);
}
.lp-game-card:hover .lp-game-play {
  transform: translateX(4px);
}

/* ═══════════════ UPCOMING LIST ═══════════════ */
.lp-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.lp-upcoming-item {
  display: grid;
  grid-template-columns: 40px 1fr 110px 140px auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.lp-upcoming-item:hover {
  background: rgba(166, 120, 232, 0.03);
}
.lp-upcoming-item:last-child {
  border-bottom: none;
}
.lp-upcoming-icon {
  font-size: 1.4rem;
  text-align: center;
}
.lp-upcoming-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.lp-upcoming-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.lp-upcoming-game {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.lp-upcoming-meta {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.lp-upcoming-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
}
.lp-upcoming-date {
  color: var(--text-dim);
  font-weight: 500;
}
.lp-upcoming-clock {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--neon);
}
.lp-upcoming-btn {
  white-space: nowrap;
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.lp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.lp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 130px;
  position: relative;
}
.lp-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dim));
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 20px var(--neon-glow);
  z-index: 2;
}
.lp-step-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.lp-step-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.lp-step-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.lp-step-arrow {
  display: none;
}

/* Desktop arrows between steps */
@media (min-width: 992px) {
  .lp-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin: 0 -0.5rem;
    z-index: 1;
  }
  .lp-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 100%;
    width: calc(100% - 26px);
    height: 2px;
    background: linear-gradient(90, var(--border), var(--border));
    z-index: 0;
  }
}

/* ═══════════════ ADVANTAGES ═══════════════ */
.lp-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-advantage {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.lp-advantage:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 120, 232, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(166, 120, 232, 0.08);
  background: rgba(26, 21, 36, 0.8);
}
.lp-advantage:hover .lp-advantage-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 16px var(--neon-glow));
}
.lp-advantage-icon {
  font-size: 2.2rem;
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}
.lp-advantage-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.lp-advantage-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}

/* ═══════════════ CTA BANNER ═══════════════ */
.lp-cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
}
.lp-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(166, 120, 232, 0.06) 0%, transparent 70%);
  opacity: 0.6;
}
.lp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lp-cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}
.lp-cta-title .neon-text {
  color: var(--neon);
  text-shadow: 0 0 40px var(--neon-glow);
}
.lp-cta-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.7;
}
.lp-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════ EMPTY STATE ═══════════════ */
.lp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-dim);
}
.lp-empty-icon {
  font-size: 3.5rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}
.lp-empty-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.lp-empty-desc {
  font-size: 0.85rem;
}

/* ═══════════════ FOOTER ═══════════════ */
.lp-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp-footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-footer-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}
.lp-footer-socials {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.lp-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.lp-social-btn:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 12px rgba(166, 120, 232, 0.15);
}
.lp-footer-col h4 {
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}
.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.lp-footer-links a {
  color: var(--text-dim);
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), background-color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.lp-footer-links a:hover {
  color: var(--neon);
  transform: translateX(3px);
}

.lp-footer-games {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.lp-footer-game {
  font-size: 1.3rem;
  opacity: 0.4;
  transition: opacity 0.2s var(--ease);
}
.lp-footer-game:hover {
  opacity: 0.8;
}
.lp-footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1199px) {
  .lp-hero-layout {
    grid-template-columns: 1fr 380px;
    gap: 2rem;
  }
  .lp-tournament-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .lp-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .lp-upcoming-item {
    grid-template-columns: 40px 1fr 100px 130px auto;
    gap: 0.5rem;
  }
}

@media (max-width: 991px) {
  .lp-hero {
    padding: 4rem 0 2.5rem;
    margin-top: 50px;
  }
  .lp-header {
    padding: 0.75rem 1rem;
  }
  .lp-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lp-hero-content {
    max-width: 100%;
  }
  .lp-hero-stats {
    gap: 1rem;
  }
  .lp-hero-stat-divider {
    display: none;
  }
  .lp-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  .lp-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .lp-hero {
    min-height: 80vh;
    padding: 2.5rem 0 1.5rem;
    margin-top: 45px;
  }
  .lp-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .lp-hero-ctas {
    flex-direction: column;
  }
  .lp-hero-ctas .btn {
    width: 100%;
  }
  .lp-tournament-grid {
    grid-template-columns: 1fr;
  }
  .lp-upcoming-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }
  .lp-upcoming-btn {
    grid-column: 1 / -1;
  }
  .lp-advantages {
    grid-template-columns: 1fr;
  }
  .lp-cta-buttons {
    flex-direction: column;
  }
  .lp-hamburger {
    display: flex;
  }
  .lp-nav, .lp-header-actions {
    display: none;
  }
  .lp-nav.open, .lp-header-actions.open {
    display: flex;
  }
  .lp-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }
  .lp-mobile-nav.open {
    display: flex;
  }
}

@media (max-width: 639px) {
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lp-section {
    padding: 2rem 0;
  }
}

@media (max-width: 479px) {
  .lp-hero {
    min-height: 75vh;
  }
  .lp-hero-title {
    font-size: 1.8rem;
  }
  .lp-footer-games {
    font-size: 1.1rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
