/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #060d1b;
  --bg-card:    #0d1b2e;
  --bg-card2:   #111f35;
  --primary:    #4a8eff;
  --primary-d:  #2d6fd4;
  --cyan:       #00d4ff;
  --purple:     #7c5cfc;
  --green:      #2ecc71;
  --red:        #e74c3c;
  --yellow:     #f39c12;
  --text:       #c8d6e5;
  --text-muted: #6b7c93;
  --text-white: #f0f4f8;
  --border:     rgba(74,142,255,0.15);
  --glow:       rgba(74,142,255,0.25);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }

img { max-width: 100%; display: block; }

/* ===== STARS BACKGROUND ===== */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; z-index: 1; }

/* ===== ALERT BANNER ===== */
.alert-banner {
  background: linear-gradient(90deg, rgba(243,156,18,0.15), rgba(243,156,18,0.08));
  border-bottom: 1px solid rgba(243,156,18,0.3);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  color: #f39c12;
  position: relative;
  z-index: 100;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,13,27,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
}

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

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px var(--glow);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--text-white);
  background: rgba(74,142,255,0.12);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7289da);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(88,101,242,0.3);
  transition: all var(--transition) !important;
  white-space: nowrap;
}

.btn-discord:hover {
  background: linear-gradient(135deg, #4752c4, #5b6eae) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88,101,242,0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,142,255,0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(74,142,255,0.1);
  border-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(74,142,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,142,255,0.1);
  border: 1px solid rgba(74,142,255,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); display: inline-block; animation: pulse 2s infinite; }

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 16px;
}

.hero-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-tagline strong {
  color: var(--green);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-ip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  margin: 0 auto;
  max-width: fit-content;
}

.hero-ip:hover {
  border-color: var(--primary);
  background: var(--bg-card2);
}

.hero-ip code {
  font-family: 'Courier New', monospace;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 600;
}

.ip-copy {
  color: var(--text-muted);
  font-size: 13px;
  display: flex; align-items: center; gap: 5px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

/* ===== ABOUT SECTION ===== */
.about { padding: 80px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  background: rgba(74,142,255,0.1);
  border: 1px solid rgba(74,142,255,0.2);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.badge.green { background: rgba(46,204,113,0.1); border-color: rgba(46,204,113,0.2); color: var(--green); }
.badge.purple { background: rgba(124,92,252,0.1); border-color: rgba(124,92,252,0.2); color: var(--purple); }
.badge.cyan { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.2); color: var(--cyan); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 6px;
}

/* ===== GAME MODES ===== */
.gamemodes { padding: 80px 0; }

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

.gamemode-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.gamemode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.gamemode-card:hover::before { transform: scaleX(1); }

.gamemode-card:hover {
  border-color: rgba(74,142,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background: var(--bg-card2);
}

.gamemode-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(74,142,255,0.15), rgba(124,92,252,0.15));
  border: 1px solid rgba(74,142,255,0.2);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  transition: all var(--transition);
}

.gamemode-card:hover .gamemode-icon {
  background: linear-gradient(135deg, rgba(74,142,255,0.25), rgba(124,92,252,0.25));
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--glow);
}

.gamemode-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.gamemode-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gamemode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}

.gamemode-tag {
  background: rgba(74,142,255,0.08);
  border: 1px solid rgba(74,142,255,0.15);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}

/* ===== SERVER SPECS ===== */
.specs { padding: 80px 0; }

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

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.spec-card:hover {
  border-color: rgba(74,142,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.spec-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.spec-card h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.spec-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

.spec-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(74,142,255,0.12), rgba(124,92,252,0.12));
  border: 1px solid rgba(74,142,255,0.2);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(74,142,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--primary); }

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

.footer-bottom p { color: var(--text-muted); font-size: 13px; }

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(74,142,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== TEAM PAGE ===== */
.team-section { padding: 20px 0 80px; }

.team-category {
  margin-bottom: 60px;
}

.team-category-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(74,142,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  border: 3px solid rgba(74,142,255,0.3);
  overflow: hidden;
}

.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 4px;
}

.team-subrole {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team-link {
  width: 32px; height: 32px;
  background: rgba(74,142,255,0.1);
  border: 1px solid rgba(74,142,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none;
}

.team-link:hover {
  background: rgba(74,142,255,0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.star-badge {
  color: #f39c12;
  font-size: 14px;
}

.team-cta {
  background: var(--bg-card);
  border: 1px dashed rgba(74,142,255,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.team-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.team-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ===== PARTNER PAGE ===== */
.partner-section { padding: 20px 0 80px; }

.partner-category { margin-bottom: 56px; }

.partner-category-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.partner-card:hover {
  border-color: rgba(124,92,252,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.partner-logo {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,92,252,0.2), rgba(74,142,255,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(124,92,252,0.2);
}

.partner-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
}

.partner-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.partner-code {
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
}

.partner-code code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
}

.partner-cta {
  background: linear-gradient(135deg, rgba(124,92,252,0.1), rgba(74,142,255,0.1));
  border: 1px dashed rgba(124,92,252,0.25);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin-top: 40px;
}

.partner-cta h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.partner-cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== STATUS PAGE ===== */
.status-section { padding: 20px 0 80px; }

.status-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.status-embed p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 20px 0 80px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.contact-method:hover {
  border-color: var(--primary);
  background: rgba(74,142,255,0.06);
  color: var(--text-white);
}

.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-method-icon.discord { background: rgba(88,101,242,0.2); }
.contact-method-icon.email { background: rgba(74,142,255,0.15); }

.contact-method-label { font-size: 13px; color: var(--text-muted); }
.contact-method-value { font-size: 14px; font-weight: 600; color: var(--text-white); }

.legal-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.legal-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.legal-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.legal-row:last-child { border-bottom: none; }

.legal-row label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.legal-row span {
  font-size: 14px;
  color: var(--text);
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 20px 0 80px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin: 32px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  padding-left: 24px;
  margin-bottom: 14px;
}

/* ===== FAQ PAGE ===== */
.faq-section { padding: 20px 0 80px; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(74,142,255,0.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

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

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card2);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--green);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gamemodes-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(6,13,27,0.97); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .navbar-nav.open { display: flex; }
  .hamburger { display: flex; }
  .navbar { position: relative; }

  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gamemodes-grid { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 60px; }
  .legal-content { padding: 28px 20px; }
  .cta-box { padding: 44px 24px; }
}

@media (max-width: 480px) {
  .gamemodes-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
