/* ============================
   NEXUS GAMING — STYLE SHEET
   ============================ */

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

:root {
  --bg: #050505;
  --surface: #0a0a0a;
  --card: #111111;
  --text: #f5f5f5;
  --text-muted: #666;
  --accent: #00ff88;
  --accent-2: #00ccff;
  --accent-pink: #ff3cac;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: rgba(0,255,136,0.3); color: #fff; }

/* ── CUSTOM CURSOR ── */
.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.25s ease, left 0.25s ease, top 0.25s ease, opacity 0.2s;
  opacity: 0.4;
}
body:not(:hover) .custom-cursor,
body:not(:hover) .cursor-trail { opacity: 0; }

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0,255,136,0.5));
}
.loader-logo-img img { width: 100%; height: 100%; object-fit: contain; }
@keyframes logoPulse { 0%,100%{filter:drop-shadow(0 0 20px rgba(0,255,136,0.5))} 50%{filter:drop-shadow(0 0 40px rgba(0,204,255,0.8))} }
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto 12px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { 0%{width:0} 60%{width:70%} 100%{width:100%} }
.loader-sub { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── SOUND TOGGLE ── */
.sound-toggle {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 900;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.sound-toggle:hover { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px rgba(0,255,136,0.3); }
.sound-toggle svg { width: 16px; height: 16px; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--accent); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,255,136,0.4));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img { filter: drop-shadow(0 0 16px rgba(0,204,255,0.7)); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand { font-family: var(--font-head); font-size: 0.9rem; font-weight: 900; letter-spacing: 0.1em; }
.nav-eat { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.08em; font-family: var(--font-body); font-weight: 400; }
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(0,255,136,0.08); }
.nav-cta { flex-shrink: 0; font-size: 0.85rem !important; padding: 10px 20px !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  border: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  box-shadow: 0 4px 20px rgba(0,255,136,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,255,136,0.5);
  filter: brightness(1.1);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,255,136,0.2);
  transform: translateY(-2px);
}
.btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}
.btn-insta:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION ── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 36px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
}
.hero-blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -200px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: var(--accent-2); bottom: -200px; right: -100px; animation-delay: 3s; }
.blob-3 { width: 400px; height: 400px; background: var(--accent-pink); top: 30%; left: 50%; animation-delay: 6s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}
.hero-grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat span:nth-child(2) { font-family: var(--font-head); font-size: 1rem; color: var(--accent); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; text-align: center; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 560px;
  display: flex;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 32px 80px rgba(0,0,0,0.5);
}
.hero-img { width: 100%; display: block; filter: brightness(0.85) saturate(1.2); }
.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.1), transparent, rgba(0,204,255,0.1));
  pointer-events: none;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.card:hover { transform: translateY(-8px); border-color: rgba(0,255,136,0.3); }
.card-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,255,136,0.15), transparent, rgba(0,204,255,0.15));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card-glow:hover::after { opacity: 1; }
.card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 1.5rem;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-body h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }
.card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── AMENITIES ── */
.amenities-section { background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── GAMES ── */
.games-section { background: var(--bg); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s;
  position: relative;
  cursor: none;
}
.game-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(0,255,136,0.4); box-shadow: 0 12px 36px rgba(0,255,136,0.1); }
.game-info { padding: 12px 14px; }
.game-info h4 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.game-platform { font-size: 0.72rem; color: var(--accent); letter-spacing: 0.05em; }

/* ── PRICING ── */
.pricing-section { background: linear-gradient(180deg, var(--bg), var(--surface) 50%, var(--bg)); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.price-popular {
  background: linear-gradient(180deg, rgba(0,255,136,0.08), var(--card));
  border-color: rgba(0,255,136,0.4);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(0,255,136,0.2), 0 20px 60px rgba(0,255,136,0.1);
}
.price-popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
}
.price-icon { font-size: 2.2rem; margin-bottom: 12px; }
.price-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 28px; }
.price-currency { font-family: var(--font-head); font-size: 1.4rem; color: var(--accent); }
.price-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.price-per { color: var(--text-muted); font-size: 1rem; }
.price-features { list-style: none; margin-bottom: 28px; text-align: left; }
.price-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.gi-large { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; }

/* ── REVIEWS ── */
.reviews-section { background: linear-gradient(180deg, var(--bg), var(--surface) 50%, var(--bg)); }
.overall-rating { margin: 20px 0 0; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rating-stars { font-size: 1.6rem; }
.rating-score { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--accent); }
.rating-count { color: var(--text-muted); font-size: 0.85rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.4s;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(0,255,136,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.95rem; }
.review-stars { font-size: 0.85rem; }
.google-badge { margin-left: auto; }
.google-badge svg { width: 20px; height: 20px; }
.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; }

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; }
.contact-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-val { font-weight: 500; margin-bottom: 6px; }
.contact-link { color: var(--accent); text-decoration: none; font-size: 0.88rem; transition: opacity 0.2s; }
.contact-link:hover { opacity: 0.7; }
.contact-btns { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 0 0 1px var(--border); margin-bottom: 16px; }
.map-btn { margin-top: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.05), transparent 70%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--font-head); font-weight: 900; font-size: 1rem; letter-spacing: 0.1em; }
.footer-tagline { font-size: 0.78rem; color: var(--text-muted); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,255,136,0.08); transform: translateY(-2px); }
.footer-links-col h4 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 20px; color: var(--text); }
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-legal { color: var(--text-muted); font-size: 0.82rem; }

/* ── MOBILE CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 700;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
}
.mobile-cta-btn svg { width: 20px; height: 20px; }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 100px 24px 60px; min-height: auto; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 100%; width: 100%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 700;
  }
  .nav-links.open .nav-link { font-size: 1.4rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-popular { transform: none; }
  .price-popular:hover { transform: translateY(-8px); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-large { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { min-width: 45%; margin-bottom: 12px; }
}

/* ── SERVICES TICKER ── */
.services-ticker {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 700;
  margin-top: 68px;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: ticker 20s linear infinite;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #000;
}
.ticker-track .dot { color: rgba(0,0,0,0.4); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-33.33%)} }

/* ── HERO TAGLINE & SERVICES ROW ── */
.hero-tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.hero-services-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-services-row span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-services-row .sep { color: var(--accent); }

/* ── HERO LOGO OVERLAY ── */
.hero-logo-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(5,5,5,0.8);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0,255,136,0.2);
}
.hero-logo-overlay img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.5));
}

/* ── AMENITY CARD WITH IMAGE ── */
.amenity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.amenity-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 2;
}
.amenity-card:hover { transform: translateY(-6px); border-color: rgba(0,255,136,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.amenity-card:hover .amenity-img-wrap img { transform: scale(1.08); }
.amenity-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
}
.amenity-body {
  padding: 20px 22px 24px;
}
.amenity-body h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.amenity-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── GAME COVER IMAGE ── */
.game-cover-img {
  height: 140px;
  overflow: hidden;
  position: relative;
}
.game-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.game-card:hover .game-cover-img img { transform: scale(1.08); }

/* ── PRICING IMAGE ── */
.price-img {
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.4));
  flex-shrink: 0;
}

/* ── RGB SCAN LINE ── */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanLine 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── NEON BORDERS ON HOVER ── */
.card::before, .price-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
  padding: 1px;
}
.card:hover::before, .price-card:hover::before { opacity: 0.3; }
