:root {
  --emerald: #00c896;
  --gold: #f5c842;
  --lava: #ff3d3d;
  --purple: #6a1bb3;
  --cyan: #00e5ff;
  --dark: #0a0419;
  --darker: #050210;
  --glass: rgba(20, 8, 40, 0.55);
  --glass-border: rgba(245, 200, 66, 0.25);
}

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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--darker);
  color: #e8e0ff;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse at top, rgba(106, 27, 179, 0.3), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(0, 200, 150, 0.15), transparent 60%);
  background-attachment: fixed;
}

.honeypot { position: absolute; left: -9999px; visibility: hidden; }

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

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 4, 25, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 0 30px rgba(245, 200, 66, 0.1);
}
.header-container {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px;
}
.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.dragon-logo {
  position: relative; width: 45px; height: 45px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, var(--purple), var(--dark));
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.logo-icon { font-size: 1.4rem; z-index: 2; }
.egg-pulse {
  position: absolute; inset: -5px;
  border: 2px solid var(--emerald);
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.logo-text {
  font-size: 1.4rem; font-weight: 700;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.main-nav { display: flex; gap: 25px; }
.main-nav a {
  color: #e8e0ff; font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 5px 0;
}
.main-nav a.active, .main-nav a:hover { color: var(--gold); }
.main-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: 0.3s;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.cta-btn {
  display: inline-block; padding: 12px 26px;
  border-radius: 50px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  font-size: 0.9rem; cursor: pointer; border: none;
  transition: all 0.3s; position: relative;
  font-family: inherit;
}
.cta-primary {
  background: linear-gradient(135deg, var(--gold), var(--lava));
  color: var(--dark);
  box-shadow: 0 0 25px rgba(245, 200, 66, 0.5);
}
.cta-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(245, 200, 66, 0.8);
}
.cta-secondary {
  background: transparent; color: var(--cyan);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}
.cta-secondary:hover { background: var(--cyan); color: var(--dark); }
.cta-header { padding: 10px 20px; font-size: 0.8rem; }

.hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  width: 28px; height: 3px; background: var(--gold);
  border-radius: 2px; transition: 0.3s;
}

/* Hero */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding: 60px 20px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 70% 50%, rgba(245, 200, 66, 0.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 200, 150, 0.15), transparent 50%);
  z-index: 0;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.ember {
  position: absolute; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; max-width: 1300px; margin: 0 auto;
  align-items: center; width: 100%;
}
.hero-badge {
  display: inline-block; padding: 6px 18px;
  background: rgba(245, 200, 66, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold); font-size: 0.85rem;
  letter-spacing: 2px; margin-bottom: 20px;
}
.hero-text h1 {
  font-size: 3.5rem; font-weight: 800;
  line-height: 1.1; margin-bottom: 20px;
}
.gold-text {
  background: linear-gradient(90deg, var(--gold), var(--lava), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
.hero-sub {
  font-size: 1.15rem; color: #c9bff0;
  margin-bottom: 30px; max-width: 540px;
}
.hero-form {
  display: flex; gap: 10px; margin-bottom: 30px;
  background: var(--glass);
  padding: 8px; border-radius: 50px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  max-width: 540px;
}
.hero-form input[type="email"] {
  flex: 1; background: transparent; border: none;
  padding: 12px 18px; color: #fff; font-size: 1rem;
  outline: none;
}
.hero-form input::placeholder { color: #9a8fc0; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 30px;
}
.stat strong {
  display: block; font-size: 1.8rem;
  color: var(--gold); font-weight: 800;
}
.stat span { font-size: 0.85rem; color: #b0a5d0; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.dragon-egg-glow {
  position: relative; width: 350px; height: 350px;
  display: flex; align-items: center; justify-content: center;
}
.egg-core {
  width: 200px; height: 260px;
  background: radial-gradient(ellipse at 35% 30%, var(--gold), var(--lava) 50%, var(--purple) 100%);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  box-shadow: 
    0 0 60px var(--gold),
    0 0 120px var(--lava),
    inset -20px -30px 50px rgba(0,0,0,0.5);
  animation: eggPulse 3s ease-in-out infinite;
  position: relative;
}
.egg-core::before {
  content: ''; position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 4px; height: 60%;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--cyan);
  animation: crack 2s ease-in-out infinite alternate;
}
@keyframes crack {
  from { opacity: 0.3; }
  to { opacity: 1; }
}
@keyframes eggPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.egg-ring {
  position: absolute; border: 2px solid var(--emerald);
  border-radius: 50%;
  animation: ringExpand 4s linear infinite;
  opacity: 0;
}
.egg-ring.r1 { width: 250px; height: 250px; animation-delay: 0s; }
.egg-ring.r2 { width: 250px; height: 250px; animation-delay: 1.3s; }
.egg-ring.r3 { width: 250px; height: 250px; animation-delay: 2.6s; }
@keyframes ringExpand {
  0% { transform: scale(0.8); opacity: 1; border-color: var(--gold); }
  100% { transform: scale(1.8); opacity: 0; border-color: var(--emerald); }
}

/* Section Defaults */
.section-title {
  font-size: 2.5rem; text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  text-align: center; color: #b0a5d0;
  margin-bottom: 50px; font-size: 1.1rem;
}

/* Featured Game */
.featured-game { padding: 80px 0; }
.game-frame-wrapper {
  max-width: 1000px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(245, 200, 66, 0.3);
  background: var(--glass);
  padding: 8px;
}
.game-frame-wrapper iframe {
  width: 100%; height: 600px; border: none;
  border-radius: 14px; display: block;
}
.game-cta { text-align: center; margin-top: 30px; }

/* Games Grid */
.games-section { padding: 80px 0; }
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.game-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 25px; text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  position: relative; overflow: hidden;
}
.game-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(245, 200, 66, 0.1), transparent 70%);
  opacity: 0; transition: 0.4s;
}
.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(245, 200, 66, 0.3);
}
.game-card:hover::before { opacity: 1; }
.game-img {
  width: 100%; height: 160px; border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--purple), var(--lava));
  position: relative; overflow: hidden;
}
.game-img[data-img="dragon-egg-slots"] {
  background: radial-gradient(circle, var(--gold), var(--lava), var(--purple));
}
.game-img[data-img="mystic-fire-games"] {
  background: radial-gradient(circle, var(--lava), var(--purple), var(--dark));
}
.game-img[data-img="treasure-hatch-jackpots"] {
  background: radial-gradient(circle, var(--emerald), var(--cyan), var(--purple));
}
.game-img[data-img="ancient-bonus-wheels"] {
  background: radial-gradient(circle, var(--cyan), var(--purple), var(--dark));
}
.game-img::after {
  content: '🐉'; position: absolute;
  inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
}
.game-card h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.3rem; }
.game-card p { color: #b0a5d0; font-size: 0.95rem; margin-bottom: 18px; }
.card-btn {
  display: inline-block; padding: 10px 24px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: var(--dark); border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.card-btn:hover { color: var(--dark); transform: scale(1.05); }

/* Mid CTA */
.mid-cta { padding: 60px 0; }
.mid-cta-box {
  background: linear-gradient(135deg, rgba(106, 27, 179, 0.4), rgba(255, 61, 61, 0.2));
  border: 1px solid var(--gold);
  border-radius: 25px;
  padding: 50px 30px; text-align: center;
  box-shadow: 0 0 50px rgba(245, 200, 66, 0.2);
}
.mid-cta-box h2 { font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; }
.mid-cta-box p { color: #d0c5e0; margin-bottom: 25px; }
.inline-form {
  display: flex; gap: 10px; max-width: 500px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.inline-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 20px; border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass); color: #fff;
  font-size: 1rem; outline: none;
}

/* VIP */
.vip-section { padding: 80px 0; }
.vip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.vip-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 30px;
  backdrop-filter: blur(10px);
  transition: 0.4s; text-align: center;
}
.vip-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(245, 200, 66, 0.3);
}
.vip-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.vip-card.featured:hover { transform: translateY(-8px) scale(1.05); }
.vip-card h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 20px; }
.vip-card ul { list-style: none; }
.vip-card li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(245, 200, 66, 0.2);
  color: #d0c5e0;
}

/* Testimonials */
.testimonials { padding: 80px 0; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 28px;
  backdrop-filter: blur(10px);
}
.testimonial-card p { color: #d0c5e0; margin-bottom: 18px; font-style: italic; }
.testimonial-card strong { color: var(--gold); }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px; margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 24px; color: #fff;
  font-size: 1rem; text-align: left;
  cursor: pointer; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.5rem; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden; transition: 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: #b0a5d0; }

/* Responsible Notice */
.responsible-notice {
  padding: 25px 0;
  background: rgba(255, 61, 61, 0.1);
  border-top: 1px solid var(--lava);
  border-bottom: 1px solid var(--lava);
  text-align: center;
}
.responsible-notice p { color: #ffd0d0; }

/* Footer */
.site-footer {
  background: var(--darker);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 35px; padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--gold); margin-bottom: 18px;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
}
.footer-col a {
  display: block; color: #b0a5d0;
  padding: 5px 0; font-size: 0.95rem;
}
.footer-col p { color: #b0a5d0; font-size: 0.9rem; margin: 10px 0; }
.footer-col p.small { font-size: 0.8rem; margin-top: 8px; }
.social-icons {
  display: flex; gap: 12px; margin-top: 15px;
}
.social-icons a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%; transition: 0.3s;
}
.social-icons a:hover {
  background: var(--gold); border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-form { display: flex; gap: 6px; }
.footer-form input {
  flex: 1; padding: 10px 14px;
  background: var(--glass); color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 8px; outline: none; font-size: 0.9rem;
}
.footer-form button {
  padding: 10px 16px; background: var(--gold);
  color: var(--dark); border: none; border-radius: 8px;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0; text-align: center;
  color: #8a7fa8; font-size: 0.85rem;
}

/* Sticky Bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--purple), var(--lava));
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  z-index: 90;
  border-top: 1px solid var(--gold);
  box-shadow: 0 -5px 25px rgba(245, 200, 66, 0.3);
  transform: translateY(100%); transition: 0.5s;
  flex-wrap: wrap;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar p { color: #fff; font-weight: 600; margin: 0; }
.sticky-form { display: flex; gap: 8px; }
.sticky-form input {
  padding: 8px 14px; border-radius: 6px; border: none;
  background: rgba(255,255,255,0.95); outline: none;
}
.sticky-form button {
  padding: 8px 18px; background: var(--gold);
  color: var(--dark); border: none; border-radius: 6px;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.sticky-close {
  background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}

/* Popups */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 2, 16, 0.85);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
}
.popup-overlay.show { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-box {
  background: linear-gradient(135deg, rgba(20, 8, 40, 0.95), rgba(106, 27, 179, 0.4));
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 40px 30px; max-width: 450px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 0 60px rgba(245, 200, 66, 0.4);
  animation: eggCrack 0.5s ease-out;
}
@keyframes eggCrack {
  0% { transform: scale(0.5) rotate(-5deg); opacity: 0; }
  50% { transform: scale(1.05) rotate(2deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.popup-box.success { border-color: var(--emerald); box-shadow: 0 0 60px rgba(0, 200, 150, 0.5); }
.popup-box.error { border-color: var(--lava); box-shadow: 0 0 60px rgba(255, 61, 61, 0.5); }
.popup-egg {
  font-size: 4rem; margin-bottom: 18px;
  animation: eggBounce 2s infinite;
}
@keyframes eggBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.popup-box h3 {
  font-size: 1.6rem; color: var(--gold); margin-bottom: 12px;
}
.popup-box.success h3 { color: var(--emerald); }
.popup-box.error h3 { color: var(--lava); }
.popup-box p { color: #d0c5e0; margin-bottom: 22px; }
.popup-box form { display: flex; flex-direction: column; gap: 12px; }
.popup-box input[type="email"] {
  padding: 14px 18px; border-radius: 50px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: #fff; font-size: 1rem; outline: none;
}
.popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--gold);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: 0.3s;
}
.popup-close:hover { transform: rotate(90deg) scale(1.2); }

/* Cookie */
.cookie-consent {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 500px; margin: 0 auto;
  background: var(--glass); backdrop-filter: blur(15px);
  border: 1px solid var(--gold); border-radius: 14px;
  padding: 16px 20px;
  display: none; align-items: center; gap: 15px; justify-content: space-between;
  z-index: 95;
  box-shadow: 0 0 30px rgba(245, 200, 66, 0.3);
}
.cookie-consent.show { display: flex; }
.cookie-consent p { margin: 0; font-size: 0.9rem; flex: 1; }
.cookie-consent button {
  padding: 8px 20px; background: var(--gold); color: var(--dark);
  border: none; border-radius: 50px; font-weight: 700; cursor: pointer;
  font-family: inherit;
}

/* Generic Page */
.page-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(106, 27, 179, 0.3), transparent 70%);
}
.page-hero h1 {
  font-size: 3rem; margin-bottom: 15px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { color: #b0a5d0; max-width: 700px; margin: 0 auto; }

.content-section { padding: 60px 0; }
.content-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px; margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.content-block h2 {
  color: var(--gold); margin-bottom: 18px; font-size: 1.6rem;
}
.content-block h3 {
  color: var(--emerald); margin: 20px 0 10px; font-size: 1.2rem;
}
.content-block p { color: #d0c5e0; margin-bottom: 12px; }
.content-block ul { padding-left: 22px; color: #d0c5e0; margin-bottom: 12px; }
.content-block li { margin-bottom: 8px; }

/* Promo Cards */
.promo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.promo-card {
  background: linear-gradient(135deg, rgba(106, 27, 179, 0.3), rgba(255, 61, 61, 0.2));
  border: 1px solid var(--gold);
  border-radius: 18px; padding: 30px;
  text-align: center; transition: 0.4s;
}
.promo-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(245, 200, 66, 0.3); }
.promo-card .promo-icon { font-size: 3rem; margin-bottom: 15px; }
.promo-card h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.3rem; }
.promo-card .countdown {
  background: rgba(0,0,0,0.3); padding: 8px 16px; border-radius: 8px;
  display: inline-block; margin: 12px 0; color: var(--cyan);
  font-family: monospace; font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 40px;
  max-width: 600px; margin: 0 auto;
}
.contact-form label {
  display: block; color: var(--gold); margin-bottom: 8px; font-weight: 600;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 16px; margin-bottom: 18px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
  border-radius: 10px; color: #fff; font-family: inherit; font-size: 1rem;
  outline: none;
}
.contact-form textarea { min-height: 130px; resize: vertical; }

/* 404 */
.error-404 {
  min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
.error-404 h1 {
  font-size: 8rem; margin: 0;
  background: linear-gradient(90deg, var(--gold), var(--lava));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-404 h2 { color: var(--emerald); margin-bottom: 20px; }
.error-404 p { color: #b0a5d0; margin-bottom: 30px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-form { margin: 0 auto 25px; flex-direction: column; border-radius: 20px; }
  .hero-form input[type="email"] { text-align: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 25px; }
  .dragon-egg-glow { width: 280px; height: 280px; }
  .egg-core { width: 160px; height: 210px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 4, 25, 0.98); flex-direction: column;
    padding: 20px; border-bottom: 1px solid var(--glass-border);
  }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .cta-header { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.9rem; }
  .game-frame-wrapper iframe { height: 450px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem; }
  .error-404 h1 { font-size: 5rem; }
  .sticky-bar { flex-direction: column; gap: 10px; padding: 12px; }
  .game-frame-wrapper iframe { height: 380px; }
  .vip-card.featured { transform: none; }
}