/* ==========================================
   DRAGON CITY GAMING — HONG KONG STYLE CSS
   ========================================== */

/* ---- DESIGN TOKENS ---- */
:root {
  --color-bg:         #0a0604;
  --color-bg-card:    #120b06;
  --color-bg-alt:     #1a0e08;
  --color-primary:    #e8312a;   /* HK neon red */
  --color-gold:       #c8962a;   /* Chinese gold */
  --color-gold-light: #f0c060;   /* bright gold */
  --color-text:       #f0e6d8;
  --color-text-dim:   #a08060;
  --color-neon-cyan:  #00e5ff;
  --color-border:     rgba(200, 150, 42, 0.25);

  --font-serif: 'Noto Serif TC', Georgia, serif;
  --font-mono:  'Share Tech Mono', 'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s ease;
  --shadow-gold: 0 0 20px rgba(200, 150, 42, 0.35);
  --shadow-red:  0 0 20px rgba(232, 49, 42, 0.4);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-serif);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
  box-shadow: var(--shadow-red);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}
.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
}
.section-header h2 em {
  display: block;
  font-style: normal;
  font-size: 0.55em;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10, 6, 4, 0.96);
  box-shadow: 0 1px 0 var(--color-border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-zh {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(240, 192, 96, 0.6);
}
.logo-en {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-text-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--color-gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold-light);
  transition: var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  object-position: center center;
  transform: scale(1.06);
  transition: transform 12s ease;
}
.hero:hover .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,6,4,0.55) 0%,
    rgba(10,6,4,0.25) 40%,
    rgba(10,6,4,0.7) 80%,
    rgba(10,6,4,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  background: rgba(10,6,4,0.4);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.title-zh {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-gold-light);
  text-shadow:
    0 0 40px rgba(240,192,96,0.6),
    0 0 80px rgba(240,192,96,0.2);
  letter-spacing: 0.06em;
}
.title-en {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2.5vw, 1.8rem);
  letter-spacing: 0.35em;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(232,49,42,0.7);
}
.hero-sub {
  font-size: 1rem;
  color: var(--color-text-dim);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-sub em { color: var(--color-text); font-style: normal; font-size: 0.9em; }
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  animation: bounce 2s infinite;
  z-index: 2;
}

/* Floating neon labels */
.neon-float {
  position: absolute;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 900;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  pointer-events: none;
  opacity: 0.7;
  animation: flicker 4s infinite;
}
.neon-1 {
  top: 20%;
  left: 5%;
  font-size: 1.8rem;
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary), 0 0 30px var(--color-primary);
  animation-delay: 0s;
}
.neon-2 {
  top: 30%;
  right: 6%;
  font-size: 1.6rem;
  color: var(--color-neon-cyan);
  text-shadow: 0 0 10px var(--color-neon-cyan), 0 0 30px var(--color-neon-cyan);
  animation-delay: 1.5s;
}
.neon-3 {
  bottom: 25%;
  left: 8%;
  font-size: 1.4rem;
  color: var(--color-gold-light);
  text-shadow: 0 0 10px var(--color-gold-light), 0 0 30px var(--color-gold-light);
  animation-delay: 3s;
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-bar {
  background: var(--color-primary);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '·';
  margin-left: 40px;
  opacity: 0.5;
}

/* ==========================================
   GAMES SECTION
   ========================================== */
.games-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.game-card--large {
  grid-column: 1 / 3;
  height: 480px;
}
.game-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.game-card img {
  transition: transform 0.6s ease;
}
.game-card:hover img { transform: scale(1.06); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,6,4,0.95) 0%,
    rgba(10,6,4,0.5) 50%,
    rgba(10,6,4,0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}
.game-card:hover .game-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10,6,4,0.98) 0%,
    rgba(10,6,4,0.7) 60%,
    rgba(10,6,4,0.2) 100%
  );
}
.game-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.game-card h3 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--color-text);
}
.game-card h3 small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  font-weight: 400;
  margin-top: 4px;
}
.game-card p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.game-card:hover p {
  opacity: 1;
  transform: translateY(0);
}
.card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200,150,42,0.12);
  line-height: 1;
  pointer-events: none;
}

/* ==========================================
   DRAGON SECTION
   ========================================== */
.dragon-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.dragon-bg {
  position: absolute;
  inset: 0;
}
.dragon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,6,4,0.97) 0%,
    rgba(10,6,4,0.7) 60%,
    rgba(10,6,4,0.4) 100%
  );
}
.dragon-content {
  position: relative;
  z-index: 2;
}
.dragon-text { max-width: 600px; }
.dragon-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-text);
}
.dragon-text h2 em {
  display: block;
  font-style: normal;
  font-size: 0.6em;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.dragon-text p {
  color: var(--color-text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.dragon-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(240,192,96,0.4);
}
.stat-unit {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--color-gold);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ==========================================
   STREET SECTION
   ========================================== */
.street-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}
.street-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.street-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.street-text h2 em {
  font-style: normal;
  font-size: 0.55em;
  display: block;
  font-family: var(--font-mono);
  color: var(--color-text-dim);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.street-text p {
  color: var(--color-text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.street-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.street-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--color-text-dim);
  padding: 10px 16px;
  background: rgba(200,150,42,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.street-features li:hover {
  background: rgba(200,150,42,0.12);
  color: var(--color-text);
  border-color: var(--color-gold);
}
.feat-icon { font-size: 1.1rem; }
.street-img {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   LEADERBOARD
   ========================================== */
.leaderboard-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.leaderboard-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lb-header {
  display: grid;
  grid-template-columns: 120px 1fr 160px 140px 120px;
  padding: 14px 24px;
  background: rgba(200,150,42,0.12);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
}
.lb-row {
  display: grid;
  grid-template-columns: 120px 1fr 160px 140px 120px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(200,150,42,0.08);
  align-items: center;
  transition: background var(--transition);
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(200,150,42,0.06); }
.lb-row--gold { background: rgba(200,150,42,0.1); }
.lb-row--gold:hover { background: rgba(200,150,42,0.16); }
.lb-rank {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-gold);
}
.lb-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.lb-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-text-dim);
  font-weight: 400;
}
.lb-game {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-dim);
}
.lb-score {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(240,192,96,0.4);
}
.lb-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
}
.lb-status.active {
  background: rgba(0,229,100,0.15);
  color: #00e564;
  border: 1px solid rgba(0,229,100,0.3);
}
.lb-status.offline {
  background: rgba(160,128,96,0.12);
  color: var(--color-text-dim);
  border: 1px solid var(--color-border);
}

/* ==========================================
   HARBOUR SECTION
   ========================================== */
.harbour-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.harbour-bg {
  position: absolute;
  inset: 0;
}
.harbour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,6,4,0.72);
}
.harbour-content {
  position: relative;
  z-index: 2;
}
.harbour-content h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 16px 0 24px;
  color: var(--color-text);
}
.harbour-content h2 em {
  font-style: normal;
  font-size: 0.65em;
  display: block;
  font-family: var(--font-mono);
  color: var(--color-text-dim);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.harbour-content p {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--color-text-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ==========================================
   EVENTS
   ========================================== */
.events-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.event-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.event-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.event-card--featured {
  grid-column: 1 / 3;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(200,150,42,0.12) 0%,
    rgba(18,11,6,1) 60%
  );
  border-color: var(--color-gold);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
}
.event-day {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.event-month {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-top: 4px;
}
.event-info { flex: 1; }
.event-type {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
}
.event-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 6px 0 8px;
  line-height: 1.3;
  color: var(--color-text);
}
.event-info h3 small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  font-weight: 400;
  margin-top: 2px;
}
.event-info p {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: 8px;
}
.event-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.event-meta span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-dim);
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
  padding: 100px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nl-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.nl-text h2 em {
  font-style: normal;
  font-size: 0.55em;
  display: block;
  font-family: var(--font-mono);
  color: var(--color-text-dim);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.nl-text p {
  color: var(--color-text-dim);
  line-height: 1.8;
  font-size: 0.9rem;
}
.nl-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.nl-fields input,
.nl-fields select {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
}
.nl-fields input:focus,
.nl-fields select:focus {
  border-color: var(--color-gold);
}
.nl-fields select option { background: var(--color-bg-card); }
.nl-success {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #00e564;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-top: 12px;
}
.footer-brand p em {
  font-style: normal;
  display: block;
  font-size: 0.85em;
  font-family: var(--font-mono);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  background: rgba(200,150,42,0.1);
  border: 1px solid var(--color-border);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-dim);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}
.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--color-text-dim);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes flicker {
  0%, 95%, 100% { opacity: 0.7; }
  96%           { opacity: 0.2; }
  97%           { opacity: 0.8; }
  98%           { opacity: 0.3; }
  99%           { opacity: 0.9; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll animation trigger */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .games-grid { grid-template-columns: 1fr; }
  .game-card--large { grid-column: 1; height: 360px; }
  .street-inner { grid-template-columns: 1fr; gap: 40px; }
  .street-img { height: 320px; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card--featured { grid-column: 1; flex-direction: column; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lb-header, .lb-row {
    grid-template-columns: 80px 1fr 100px 100px;
  }
  .lb-header span:nth-child(5),
  .lb-row .lb-status { display: none; }
  .dragon-stats { gap: 28px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10,6,4,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lb-header, .lb-row {
    grid-template-columns: 60px 1fr 90px;
    font-size: 0.75rem;
  }
  .lb-header span:nth-child(3),
  .lb-header span:nth-child(4),
  .lb-row .lb-game { display: none; }
  .dragon-stats { flex-direction: column; gap: 20px; }
  .neon-float { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
}
