@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --nx-bg: #0a0f1e;
  --nx-bg-deep: #060a14;
  --nx-bg-card: rgba(15, 20, 40, 0.6);
  --nx-bg-card-solid: #0f1428;
  --nx-bg-hover: rgba(20, 28, 55, 0.8);
  --nx-cyan: #00d4ff;
  --nx-cyan-dim: #0099cc;
  --nx-purple: #7b2ff7;
  --nx-purple-dim: #5a1fd4;
  --nx-pink: #ff3366;
  --nx-orange: #ff6b35;
  --nx-green: #00ff88;
  --nx-white: #f0f0f0;
  --nx-gray: #8b95a5;
  --nx-gray-dark: #4a5568;
  --nx-glow-cyan: rgba(0, 212, 255, 0.25);
  --nx-glow-purple: rgba(123, 47, 247, 0.25);
  --nx-glow-pink: rgba(255, 51, 102, 0.3);
  --nx-border: rgba(0, 212, 255, 0.15);
  --nx-border-hover: rgba(0, 212, 255, 0.4);
  --nx-font: 'Inter', system-ui, -apple-system, sans-serif;
  --nx-font-accent: 'Space Grotesk', monospace;
  --nx-radius: 16px;
  --nx-radius-sm: 10px;
  --nx-radius-pill: 100px;
}

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

body {
  margin: 0;
  font-family: var(--nx-font);
  background: linear-gradient(135deg, var(--nx-bg-deep), var(--nx-bg));
  color: var(--nx-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nx-menu-open {
  overflow: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.nx-section {
  padding: 48px 0;
}

.nx-section-title {
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* Header */
.nx-masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(0,212,255,0.1), rgba(123,47,247,0.1)) 1;
  transition: background 0.3s ease;
}

.nx-masthead.scrolled {
  background: rgba(6, 10, 20, 0.9);
}

.nx-masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nx-brand img {
  height: 36px;
  width: auto;
}

.nx-nav {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .nx-nav {
    display: flex;
  }
}

.nx-nav a {
  color: var(--nx-gray);
  font-weight: 500;
  transition: color 0.3s;
}

.nx-nav a:hover {
  color: var(--nx-cyan);
}

.nx-nav-login {
  border: 1px solid var(--nx-cyan) !important;
  color: var(--nx-cyan) !important;
  border-radius: var(--nx-radius-pill);
  padding: 8px 24px;
  font-weight: 600 !important;
}

.nx-nav-signup {
  background: linear-gradient(135deg, var(--nx-pink), var(--nx-orange));
  color: var(--nx-white) !important;
  border-radius: var(--nx-radius-pill);
  padding: 8px 24px;
  font-weight: 700 !important;
}

.nx-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

@media (min-width: 1024px) {
  .nx-burger {
    display: none;
  }
}

.nx-burger span {
  width: 30px;
  height: 2px;
  background: var(--nx-white);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Mobile Drawer */
.nx-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 100px 24px 40px;
}

.nx-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nx-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nx-drawer-nav a {
  color: var(--nx-cyan);
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding-bottom: 12px;
  font-weight: 600;
}

.nx-drawer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--nx-cyan), transparent);
  opacity: 0.2;
  margin: 12px 0;
}

.nx-drawer-cta {
  display: block;
  padding: 14px;
  border-radius: var(--nx-radius-pill);
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 4px;
}

.nx-drawer-cta.signup {
  background: linear-gradient(135deg, var(--nx-pink), var(--nx-orange));
  color: var(--nx-white);
}

.nx-drawer-cta.login {
  border: 2px solid var(--nx-cyan);
  color: var(--nx-cyan);
}

/* Hero (Cinema) */
.nx-cinema {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.nx-cinema-bg {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.nx-cinema-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.nx-cinema-bg::after {
  display: none;
}

.nx-cinema-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px 24px;
  text-align: center;
}

.nx-cinema-title {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nx-accent {
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nx-cinema-sub {
  color: var(--nx-gray);
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

.nx-cinema-actions {
  display: none;
}

.nx-cta-apk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: var(--nx-radius-pill);
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.nx-cta-apk:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px var(--nx-glow-purple);
}

.nx-cta-pulse {
  background: linear-gradient(135deg, var(--nx-pink), var(--nx-orange));
  color: var(--nx-white);
  padding: 13px 34px;
  border-radius: var(--nx-radius-pill);
  font-weight: 700;
  box-shadow: 0 4px 15px var(--nx-glow-pink);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  display: inline-block;
  cursor: pointer;
  animation: nx-pulse 3s infinite;
}

.nx-cta-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  animation: nx-shimmer 3s infinite;
}

.nx-cta-pulse:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.5);
}

.nx-cta-glow {
  background: transparent;
  border: 2px solid var(--nx-cyan);
  color: var(--nx-cyan);
  padding: 13px 34px;
  border-radius: var(--nx-radius-pill);
  font-weight: 700;
  box-shadow: 0 0 15px var(--nx-glow-cyan), inset 0 0 15px rgba(0,212,255,0.05);
  transition: background 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.nx-cta-glow:hover {
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 25px var(--nx-glow-cyan), inset 0 0 25px rgba(0,212,255,0.1);
}

#nx-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Stats Rail */
.nx-stats-rail {
  border-bottom: 1px solid var(--nx-border);
  padding: 20px 0;
  background: rgba(10, 15, 30, 0.8);
}

.nx-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.nx-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nx-gray);
  font-size: 14px;
}

.nx-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--nx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.nx-stat-value {
  font-family: var(--nx-font-accent);
  font-weight: 700;
  font-size: 18px;
  color: var(--nx-cyan);
}

/* Provider Brands Rail */
.nx-brands-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--nx-border);
}

.nx-brands-label {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 14px;
  color: var(--nx-cyan);
  text-align: center;
  margin-bottom: 28px;
  font-family: var(--nx-font-accent);
  font-weight: 700;
}

.nx-brands-track {
  overflow: hidden;
  position: relative;
}

.nx-brands-track::before,
.nx-brands-track::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.nx-brands-track::before {
  left: 0;
  background: linear-gradient(to right, var(--nx-bg) 0%, transparent 100%);
}

.nx-brands-track::after {
  right: 0;
  background: linear-gradient(to left, var(--nx-bg) 0%, transparent 100%);
}

.nx-brands-scroll {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: nx-marquee 15s linear infinite;
}

.nx-brands-scroll:hover {
  animation-play-state: paused;
}

.nx-brands-scroll a {
  padding: 14px 24px;
  border-radius: var(--nx-radius);
  background: var(--nx-bg-card);
  border: 1px solid var(--nx-border);
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-brands-scroll a:hover {
  border-color: var(--nx-cyan);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px var(--nx-glow-cyan);
}

.nx-brands-scroll img {
  height: 85px;
  object-fit: contain;
}

/* Page Layout */
.nx-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .nx-grid {
    flex-direction: row;
  }
  .nx-main {
    flex: 1;
    min-width: 0;
  }
  .nx-float-panel {
    width: 300px;
    flex-shrink: 0;
  }
}

/* Feature Cards (Hex) */
.nx-features-title {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

.nx-hex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .nx-hex-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nx-hex-card {
  background: var(--nx-bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s;
}

.nx-hex-card:hover {
  border-color: var(--nx-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--nx-glow-cyan);
}

.nx-hex-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 12px;
  border: 1px solid var(--nx-border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-cyan);
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(123,47,247,0.1));
  transform: rotate(0deg);
}

.nx-hex-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--nx-white);
  margin: 0 0 6px;
}

.nx-hex-card p {
  font-size: 11px;
  color: var(--nx-gray-dark);
  line-height: 1.5;
  margin: 0;
}

/* Game Showcase */
.nx-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.nx-showcase-footer {
  text-align: center;
  margin-top: 16px;
}

.nx-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .nx-showcase-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.nx-game-tile {
  border-radius: var(--nx-radius);
  overflow: hidden;
  background: var(--nx-bg-card);
  border: 1px solid transparent;
  transition: all 0.4s;
  position: relative;
  display: block;
  transform-style: preserve-3d;
}

.nx-game-tile:hover {
  border-color: var(--nx-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--nx-glow-cyan), 0 0 0 1px var(--nx-cyan);
  z-index: 2;
}

.nx-game-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
}

.nx-game-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.nx-game-tile:hover .nx-game-hover {
  opacity: 1;
}

.nx-play-tag {
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  color: #fff;
  padding: 6px 22px;
  border-radius: var(--nx-radius-pill);
  font-weight: 700;
  font-size: 13px;
  transform: translateZ(20px);
}

.nx-game-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--nx-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.nx-btn-ghost {
  display: inline-block;
  border: 1px solid var(--nx-border);
  color: var(--nx-gray);
  padding: 11px 32px;
  border-radius: var(--nx-radius-pill);
  font-size: 14px;
  transition: all 0.3s;
  text-align: center;
  margin-top: 24px;
}

.nx-btn-ghost:hover {
  border-color: var(--nx-cyan);
  color: var(--nx-cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* Promotions */
.nx-bento-promo {
  display: flex;
  flex-direction: column;
  background: var(--nx-bg-card);
  border-radius: var(--nx-radius);
  overflow: hidden;
  border: 1px solid var(--nx-border);
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.nx-bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-bento-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .nx-bento-promo {
    flex-direction: row;
  }
  .nx-bento-media {
    width: 40%;
  }
  .nx-bento-body {
    width: 60%;
    padding: 32px;
  }
}

.nx-bento-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--nx-pink), var(--nx-orange));
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--nx-radius-pill);
  margin-bottom: 12px;
}

.nx-bento-title {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 12px;
}

.nx-bento-body p {
  color: var(--nx-gray);
  font-size: 14px;
  margin: 0 0 20px;
}

.nx-bento-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  color: #fff;
  padding: 11px 28px;
  border-radius: var(--nx-radius-pill);
  font-weight: 700;
  transition: transform 0.3s;
}

.nx-bento-cta:hover {
  transform: scale(1.05);
}

/* Banking */
.nx-payments {
  text-align: center;
}

.nx-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.nx-pay-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--nx-radius-pill);
  font-size: 12px;
  font-weight: 700;
  height: 36px;
  min-width: 70px;
  transition: all 0.3s;
  border: 1px solid var(--nx-border);
  color: #fff;
}

.nx-pay-chip:hover {
  border-color: var(--nx-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--nx-glow-cyan);
}

.nx-pay-ktb { background: #00A5E3; }
.nx-pay-scb { background: #4E2A84; }
.nx-pay-kbank { background: #138F2D; }
.nx-pay-prompt { background: #1A3365; }
.nx-pay-true { background: #FF8300; }
.nx-pay-ttb { background: #FC4F08; }
.nx-pay-bbl { background: #1E3A8A; color: var(--nx-cyan); }
.nx-pay-wallet { background: var(--nx-bg-card-solid); color: var(--nx-cyan); border-color: var(--nx-border-hover); }

/* Article SEO */
.nx-glass-reveal {
  background: transparent;
  margin-bottom: 12px;
}

.nx-glass-reveal summary {
  background: var(--nx-bg-card);
  padding: 16px 20px;
  border-radius: var(--nx-radius-sm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--nx-cyan);
  font-size: 1rem;
  list-style: none;
  border: 1px solid var(--nx-border);
  backdrop-filter: blur(8px);
}

.nx-glass-reveal summary::-webkit-details-marker {
  display: none;
}

.nx-glass-reveal[open] summary {
  border-radius: var(--nx-radius-sm) var(--nx-radius-sm) 0 0;
  border-bottom: none;
}

.nx-glass-reveal[open] summary svg,
.nx-glass-reveal[open] summary i svg {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.nx-reveal-body {
  background: var(--nx-bg-card);
  padding: 20px;
  border-radius: 0 0 var(--nx-radius-sm) var(--nx-radius-sm);
  border: 1px solid var(--nx-border);
  border-top: none;
  backdrop-filter: blur(8px);
}

.nx-reveal-body p {
  color: var(--nx-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 0;
}

.nx-reveal-body a {
  color: var(--nx-cyan);
}

.nx-crumbs {
  font-size: 12px;
  color: var(--nx-gray-dark);
  margin-bottom: 24px;
}

.nx-crumbs a {
  color: var(--nx-cyan);
}

/* Sidebar (Float Panel) */
.nx-float-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 1024px) {
  .nx-float-panel {
    position: sticky;
    top: 80px;
    align-self: flex-start;
  }
}

.nx-float-card {
  background: var(--nx-bg-card);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.nx-apk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: var(--nx-radius-sm);
  background: linear-gradient(135deg, var(--nx-cyan), var(--nx-purple));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border: none;
  cursor: pointer;
}

.nx-apk-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  animation: nx-shimmer 2.5s infinite;
}

.nx-cta-big-pulse {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: var(--nx-radius-sm);
  background: linear-gradient(135deg, var(--nx-pink), var(--nx-orange));
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px var(--nx-glow-pink);
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s;
}

.nx-cta-big-pulse:hover {
  transform: scale(1.02);
}

.nx-cta-big-glow {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: var(--nx-radius-sm);
  border: 2px solid var(--nx-cyan);
  color: var(--nx-cyan);
  font-weight: 700;
  font-size: 18px;
  background: transparent;
  box-shadow: 0 0 20px var(--nx-glow-cyan), inset 0 0 20px rgba(0,212,255,0.03);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nx-cta-big-glow:hover {
  background: rgba(0, 212, 255, 0.08);
}

.nx-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.nx-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nx-trust-item .nx-t-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--nx-border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-cyan);
  background: rgba(0,212,255,0.05);
}

.nx-trust-item span {
  font-size: 10px;
  color: var(--nx-gray);
}

/* Footer */
.nx-footer {
  background: var(--nx-bg-deep);
  border-top: 1px solid var(--nx-border);
  margin-bottom: 60px;
}

@media (min-width: 769px) {
  .nx-footer {
    margin-bottom: 0;
  }
}

.nx-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  .nx-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.nx-footer-brand img {
  max-width: 140px;
  margin-bottom: 12px;
}

.nx-footer-brand p {
  font-size: 12px;
  color: var(--nx-gray-dark);
  max-width: 300px;
}

.nx-footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.nx-footer-col h4 {
  color: var(--nx-cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-family: var(--nx-font-accent);
}

.nx-footer-col a {
  display: block;
  color: var(--nx-gray-dark);
  font-size: 13px;
  padding: 3px 0;
  transition: color 0.3s;
}

.nx-footer-col a:hover {
  color: var(--nx-cyan);
}

.nx-footer-bottom {
  border-top: 1px solid var(--nx-border);
  padding-top: 20px;
  text-align: center;
}

.nx-footer-bottom p {
  font-size: 12px;
  color: var(--nx-gray-dark);
  margin: 0;
}

/* Animations */
@keyframes nx-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes nx-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes nx-pulse {
  0%, 100% { box-shadow: 0 0 10px var(--nx-glow-cyan); }
  50% { box-shadow: 0 0 25px var(--nx-glow-cyan), 0 0 50px var(--nx-glow-purple); }
}

@keyframes nx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

/* Mobile Responsive */
@media (max-width: 767px) {
  .nx-container {
    padding: 0 24px;
  }
  .nx-section {
    padding: 32px 0;
  }
  .nx-section-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .nx-cinema {
    padding-top: 80px;
  }
  .nx-cinema-body {
    padding: 20px 16px 18px;
    text-align: center;
  }
  .nx-cinema-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .nx-cinema-sub {
    font-size: 0.76rem;
    line-height: 1.5;
  }
  .nx-cinema-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding: 0 12px;
  }
  .nx-cta-pulse, .nx-cta-glow, .nx-cta-apk {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.05rem;
    border-radius: var(--nx-radius-sm);
  }
  .nx-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 8px;
  }
  .nx-stat-item {
    font-size: 11.5px;
  }
  .nx-brands-section {
    display: none;
  }
  .nx-hex-grid {
    gap: 14px;
  }
  .nx-hex-card {
    padding: 22px 16px;
    border-radius: 12px;
  }
  .nx-showcase-grid {
    gap: 12px;
  }
  .nx-game-tile {
    border-radius: 10px;
  }
  .nx-bento-promo {
    border-radius: 14px;
  }
  .nx-pay-grid {
    gap: 10px;
  }
  .nx-pay-chip {
    height: 34px;
    min-width: 65px;
    font-size: 11px;
  }
  .nx-float-panel {
    margin-top: 16px;
  }
  .nx-float-card {
    padding: 18px;
    border-radius: 12px;
  }
  .nx-footer {
    margin-bottom: 0;
  }
  .nx-footer-inner {
    padding: 32px 20px 16px;
  }
}
