/* ============================================================
   NOVA ROYALE — Main Stylesheet
   Dark cyberpunk: #0A0A0F bg, #00FFFF cyan, #FF00FF magenta
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0A0A0F;
  --bg-mid:    #0D0D1A;
  --bg-card:   #111120;
  --cyan:      #00FFFF;
  --magenta:   #FF00FF;
  --cyan-dim:  rgba(0,255,255,0.15);
  --mag-dim:   rgba(255,0,255,0.15);
  --cyan-glow: 0 0 8px #00FFFF, 0 0 20px rgba(0,255,255,0.5);
  --mag-glow:  0 0 8px #FF00FF, 0 0 20px rgba(255,0,255,0.5);
  --white:     #FFFFFF;
  --muted:     rgba(255,255,255,0.6);
  --border:    rgba(0,255,255,0.25);
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --radius:    4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ---------- Typography helpers ---------- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-top: 0.5rem;
}

.text-cyan    { color: var(--cyan); }
.text-magenta { color: var(--magenta); }

.neon-text-cyan {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}
.neon-text-magenta {
  color: var(--magenta);
  text-shadow: var(--mag-glow);
}

/* ---------- Section wrapper ---------- */
section {
  position: relative;
  padding: 80px 20px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #0088FF 50%, var(--magenta) 100%);
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,255,255,0.6), 0 0 40px rgba(255,0,255,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-cyan:hover {
  background: var(--cyan-dim);
  box-shadow: var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-magenta {
  background: linear-gradient(135deg, var(--magenta), #8800FF);
  color: #fff;
}
.btn-magenta:hover {
  box-shadow: var(--mag-glow);
  transform: translateY(-2px);
}

/* Pulse animation on primary CTA */
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 10px rgba(0,255,255,0.4), 0 0 20px rgba(0,255,255,0.2); }
  50%       { box-shadow: 0 0 20px rgba(0,255,255,0.8), 0 0 40px rgba(255,0,255,0.4); }
}
.btn-primary { animation: pulse-border 2.5s ease-in-out infinite; }

/* ---------- Neon divider ---------- */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  margin: 0;
}

/* ---------- Scanline overlay ---------- */
.scanlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  z-index: 3;
}

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--cyan); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.55) 0%,
    rgba(10,10,15,0.30) 40%,
    rgba(10,10,15,0.75) 80%,
    rgba(10,10,15,1)    100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 120px 20px 80px;
  max-width: 900px;
}

.hero-logo {
  width: clamp(260px, 55vw, 560px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 30px rgba(0,255,255,0.45)) drop-shadow(0 0 60px rgba(255,0,255,0.3));
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.hero-logo { animation: logo-float 4s ease-in-out infinite; }

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-tagline span {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: particle-drift linear infinite;
  opacity: 0;
}

@keyframes particle-drift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

/* ============================================================
   SEASON PASS
   ============================================================ */
#season-pass {
  background: var(--bg-mid);
}

.season-header {
  text-align: center;
  margin-bottom: 48px;
}

.season-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 20px;
}

.countdown-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF4444;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.season-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tier-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,255,255,0.2);
}

.tier-card:hover::before { opacity: 1; }

.tier-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,255,255,0.25), inset 0 0 40px rgba(0,255,255,0.04);
}

.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 700;
}

.badge-free     { background: rgba(255,255,255,0.1); color: var(--muted); }
.badge-premium  { background: rgba(0,255,255,0.15); color: var(--cyan); border: 1px solid var(--cyan); }
.badge-ultimate { background: rgba(255,0,255,0.15); color: var(--magenta); border: 1px solid var(--magenta); }

.tier-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.tier-perks {
  list-style: none;
  margin-bottom: 20px;
}

.tier-perks li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-perks li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.season-cta {
  text-align: center;
}

/* ============================================================
   SKINS SHOWCASE
   ============================================================ */
#skins {
  background: var(--bg);
}

.skins-header {
  text-align: center;
  margin-bottom: 48px;
}

.skins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.skin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.skin-card:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,255,255,0.35), 0 0 60px rgba(255,0,255,0.15);
}

.skin-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.skin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition);
}

.skin-card:hover .skin-img-wrap img { transform: scale(1.06); }

.skin-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10,10,15,0.95) 0%, transparent 100%);
}

.skin-info {
  padding: 16px 20px;
}

.skin-rarity {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 700;
}

.rarity-legendary { background: rgba(255,0,255,0.2); color: var(--magenta); border: 1px solid var(--magenta); }
.rarity-epic      { background: rgba(0,255,255,0.2); color: var(--cyan);    border: 1px solid var(--cyan); }

.skin-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ============================================================
   LEADERBOARD
   ============================================================ */
#leaderboard {
  background: var(--bg-mid);
}

.lb-header {
  text-align: center;
  margin-bottom: 40px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,70,0.1);
  border: 1px solid rgba(0,255,70,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #00FF46;
  margin-bottom: 20px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00FF46;
  box-shadow: 0 0 6px #00FF46;
  animation: blink 1.2s ease-in-out infinite;
}

.lb-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.lb-table thead tr {
  background: linear-gradient(90deg, rgba(0,255,255,0.15) 0%, rgba(255,0,255,0.08) 100%);
  border-bottom: 1px solid var(--cyan);
}

.lb-table thead th {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 14px 16px;
  text-align: left;
}

.lb-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}

.lb-table tbody tr:hover {
  background: rgba(0,255,255,0.04);
}

.lb-table tbody tr:last-child { border-bottom: none; }

.lb-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.lb-rank {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  width: 50px;
}

.rank-1 { color: #FFD700; text-shadow: 0 0 8px rgba(255,215,0,0.6); }
.rank-2 { color: #C0C0C0; text-shadow: 0 0 6px rgba(192,192,192,0.5); }
.rank-3 { color: #CD7F32; text-shadow: 0 0 6px rgba(205,127,50,0.5); }
.rank-other { color: var(--muted); }

.lb-player {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.lb-earnings {
  color: #FFD700;
  font-weight: 600;
}

.lb-footer {
  text-align: center;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  background: var(--bg);
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(0,255,255,0.2);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--cyan-dim), var(--mag-dim));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   DISCORD CTA
   ============================================================ */
#discord {
  background: linear-gradient(135deg, #0D0D1A 0%, #15051F 50%, #0D0D1A 100%);
  border-top: 1px solid rgba(255,0,255,0.15);
  border-bottom: 1px solid rgba(0,255,255,0.15);
}

.discord-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.discord-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(88,101,242,0.2);
  border: 1px solid rgba(88,101,242,0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-icon-wrap svg {
  width: 44px;
  height: 44px;
  fill: #5865F2;
}

.discord-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.discord-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
}

.discord-benefits li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  background: var(--bg);
  text-align: center;
}

.newsletter-inner { max-width: 600px; margin: 0 auto; }

.newsletter-form {
  display: flex;
  gap: 12px;
  margin: 28px 0 12px;
}

.newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  background: var(--bg-mid);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,255,255,0.15);
}

.pricing-card.featured {
  transform: scale(1.04);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,255,255,0.3), 0 0 60px rgba(0,255,255,0.1);
  padding-top: 48px;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 40px rgba(0,255,255,0.45), 0 0 80px rgba(255,0,255,0.2);
}

.pricing-featured-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--cyan), #0088FF, var(--magenta));
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  text-align: center;
  padding: 6px;
}

.pricing-tier-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--white);
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--muted);
}

.pricing-price-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pricing-perks {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-perks li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pricing-perks li:last-child { border-bottom: none; }

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--cyan);
}

.pricing-card.featured .check-icon { color: var(--cyan); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 20px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand img { height: 36px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 220px; }

.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.footer-links-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--muted);
  transition: fill var(--transition);
}

.social-btn:hover {
  border-color: var(--cyan);
  box-shadow: var(--cyan-glow);
}

.social-btn:hover svg { fill: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--muted); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   GRADIENT BORDERS (utility)
   ============================================================ */
.grad-border {
  position: relative;
}

.grad-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  z-index: -1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .skins-grid    { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { gap: 16px; }
}

@media (max-width: 1024px) {
  #navbar { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .skins-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .footer-top { gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .container { padding: 0 16px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .skins-grid    { grid-template-columns: repeat(2, 1fr); }

  .lb-table td, .lb-table th { padding: 10px 10px; font-size: 0.82rem; }
  .lb-table .lb-player { font-size: 0.85rem; }
  .lb-avatar { display: none; }

  .newsletter-form { flex-direction: column; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .season-tiers  { grid-template-columns: 1fr; }
  .hero-ctas     { flex-direction: column; align-items: center; }

  .lb-table .kills-col,
  .lb-table .earnings-col { display: none; }
}
