/* ===========================
   Arena Gamer ARG — Main CSS
   =========================== */

:root {
  --primary: #e8ff00;
  --primary-dark: #b8cc00;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-section: #0e0e16;
  --text-main: #f0f0f5;
  --text-muted: #8888a0;
  --border: #1e1e2e;
  --gradient: linear-gradient(135deg, #e8ff00 0%, #00e5ff 100%);
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--primary); }

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

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-nav {
  display: inline-block;
  background: var(--primary);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--primary-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(10,10,15,0.97); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.logo-icon { color: var(--primary); font-size: 20px; }
.logo-text .accent { color: var(--primary); }
.logo-arg { color: var(--text-muted); font-size: 14px; margin-left: 2px; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-muted); border-radius: 6px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--text-main); background: rgba(255,255,255,0.06); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: var(--transition); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.2; }
.section-header.center { text-align: center; margin-bottom: 48px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.6) 50%, rgba(10,10,15,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 80px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,255,0,0.12);
  border: 1px solid rgba(232,255,0,0.3);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--primary);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== ABOUT ===== */
.about-section { padding: 100px 0; background: var(--bg-section); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/3; }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(232,255,0,0.3);
}
.about-text h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.feature-item i { color: var(--primary); }

/* ===== SERVICES PREVIEW ===== */
.services-preview { padding: 100px 0; background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(232,255,0,0.3); }
.service-card.featured { border-color: rgba(232,255,0,0.4); }
.service-img-wrap { overflow: hidden; height: 200px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-body { padding: 24px; }
.service-icon { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
.service-body h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.service-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.service-link { color: var(--primary); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; background: var(--bg-section); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item.large { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--primary); }

/* ===== BOOKING CTA ===== */
.booking-cta { position: relative; padding: 100px 0; }
.booking-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.booking-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.75) 100%); }
.booking-content { position: relative; z-index: 2; max-width: 700px; }
.booking-content h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.booking-content p { color: var(--text-muted); margin-bottom: 36px; font-size: 16px; }
.booking-options { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.booking-opt {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.booking-opt i { font-size: 20px; color: var(--primary); width: 24px; text-align: center; }
.booking-opt div { display: flex; flex-direction: column; }
.booking-opt strong { font-size: 14px; font-weight: 600; }
.booking-opt span { font-size: 14px; color: var(--text-muted); }

/* ===== EQUIPMENT ===== */
.equipment-section { padding: 100px 0; background: var(--bg-dark); }
.equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.equip-card { border-radius: var(--radius); overflow: hidden; }
.equip-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.equip-info { background: var(--bg-card); padding: 20px; }
.equip-info h4 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.equip-info p { color: var(--text-muted); font-size: 14px; }
.equip-specs h3 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 24px; }
.spec-list { display: flex; flex-direction: column; gap: 0; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.spec-row span { color: var(--text-muted); }
.spec-row strong { color: var(--text-main); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--bg-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(232,255,0,0.3); }
.stars { color: var(--primary); margin-bottom: 16px; }
.testimonial-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 15px; font-weight: 600; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 8px; background: var(--bg-section); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); font-size: 16px; }
.footer-social a:hover { background: var(--primary); color: #0a0a0f; border-color: var(--primary); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a { color: var(--text-muted); font-size: 14px; padding: 6px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.footer-contact i { color: var(--primary); margin-top: 2px; width: 16px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}

/* ===== PAGE SPECIFIC ===== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 60px); font-weight: 700; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; }

.content-section { padding: 80px 0; }
.content-section h2 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.content-section h3 { font-family: var(--font-head); font-size: 22px; font-weight: 600; margin: 24px 0 12px; }
.content-section p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.content-section ul { list-style: none; margin-bottom: 16px; }
.content-section ul li { color: var(--text-muted); padding: 6px 0 6px 20px; position: relative; }
.content-section ul li::before { content: '▶'; position: absolute; left: 0; color: var(--primary); font-size: 10px; top: 8px; }

/* ===== PRICING PAGE ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.pricing-card:hover, .pricing-card.best { border-color: rgba(232,255,0,0.5); }
.pricing-card.best { background: rgba(232,255,0,0.05); }
.pricing-badge { display: inline-block; background: var(--primary); color: #0a0a0f; font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; text-transform: uppercase; }
.pricing-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.pricing-unit { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.pricing-features li i { color: var(--primary); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-card .card-icon { width: 48px; height: 48px; background: rgba(232,255,0,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { color: var(--text-muted); font-size: 14px; }
.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.map-frame { width:100%; height:250px; border-radius: 8px; border: none; filter: invert(0.9) hue-rotate(180deg); }

/* ===== TOURNAMENTS PAGE ===== */
.tournament-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.tournament-card:hover { border-color: rgba(232,255,0,0.4); transform: translateY(-4px); }
.tournament-card img { width: 100%; height: 200px; object-fit: cover; }
.tournament-body { padding: 24px; }
.tournament-tag { display: inline-block; background: rgba(232,255,0,0.12); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; margin-bottom: 12px; }
.tournament-body h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.tournament-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.tournament-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.tournament-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.tournament-meta i { color: var(--primary); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-banner p { font-size: 14px; color: var(--text-muted); max-width: 700px; }
.cookie-banner a { color: var(--primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept { background: var(--primary); color: #0a0a0f; border: none; padding: 10px 24px; border-radius: 6px; font-weight: 700; cursor: pointer; font-size: 14px; }
.cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 10px 24px; border-radius: 6px; cursor: pointer; font-size: 14px; }
.cookie-banner.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid, .equip-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; }
  .tournament-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-dark); flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 22px; padding: 12px 24px; }
  .btn-nav { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-stats { flex-direction: column; gap: 12px; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .services-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge-float { position: static; margin-top: 16px; }
  .booking-options { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-content { padding: 100px 24px 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 36px; }
  .section-header h2 { font-size: 26px; }
  .pricing-price { font-size: 40px; }
}
