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

:root {
  --brand: #00E5FF;
  --brand-hover: #00B8CC;
  --emerald: #00E676;
  --bg-dark: #050505;
  --bg-card: #121212;
  --bg-panel: #111111;
  --text-main: #FFFFFF;
  --text-sec: #CCCCCC;
  --text-muted: #8D99AE;
  --border-color: #333333;
  --border: #333333;
  
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Roboto Mono', monospace;
  --radius: 16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--bg-dark); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: 0.2s; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--brand); font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }

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

/* Header */
.header { position: sticky; top: 0; z-index: 999; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid var(--brand); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { display: flex; align-items: center; gap: 15px; font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--text-main); text-transform: uppercase; }
.logo-icon { width: 45px; height: 45px; background: var(--brand); color: #000; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-family: var(--font-head); }
.nav-links { display: flex; gap: 35px; }
.nav-links a { color: var(--text-main); font-weight: 700; font-size: 1rem; text-transform: uppercase; }
.nav-links a.active, .nav-links a:hover { color: var(--brand); }

/* Hero */
.hero { padding: 80px 0 160px; text-align: center; background: linear-gradient(180deg, #111 0%, #050505 100%); }
.hero-badge { display: inline-block; border: 2px solid var(--brand); color: var(--brand); padding: 8px 25px; border-radius: 50px; font-weight: 900; font-size: 0.85rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; }
.hero h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.1; color: var(--text-main); text-transform: uppercase; }
.hero h1 span { color: var(--emerald); }
.hero p { color: var(--text-sec); max-width: 800px; margin: 0 auto; font-size: 1.2rem; }

/* Iframe Container (The Game) - FIXED WIDTH */
.game-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: -100px auto 80px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.iframe-box {
  background: var(--bg-card);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
  width: 100%;
}
.iframe-box iframe {
  width: 100% !important;
  max-width: 100%;
  height: 650px;
  border: none;
  border-radius: 8px;
  display: block;
}

/* SEO Content */
.seo-content { max-width: 1000px; margin: 0 auto; padding: 40px 20px 80px; }
.seo-content h2 { font-size: 2.5rem; margin-bottom: 30px; color: var(--brand); text-align: center; text-transform: uppercase; }
.seo-content p { color: var(--text-sec); font-size: 1.05rem; line-height: 1.9; text-align: justify; margin-bottom: 25px; }

/* Footer */
.footer { background: #000; padding: 80px 0 40px; border-top: 5px solid var(--brand); }
.disclaimer-box { background: #111; border: 2px solid var(--border-color); padding: 30px; border-radius: 12px; margin-bottom: 60px; }
.disclaimer-box h4 { color: var(--brand); display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 1.2rem; font-family: var(--font-body); text-transform: uppercase; }
.disclaimer-box p { color: var(--text-sec); font-size: 0.95rem; line-height: 1.8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 25px; color: var(--brand); text-transform: uppercase; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul a { color: var(--text-main); font-size: 1rem; font-weight: 500; }
.footer-col ul a:hover { color: var(--brand); }
.age-badge { width: 80px; height: 80px; background: transparent; color: var(--text-main); border: 4px solid var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 2rem; margin: 0 auto; }
.copyright { text-align: center; color: var(--border-color); font-size: 0.9rem; margin-top: 40px; border-top: 1px solid var(--border); padding-top: 20px; }

/* Mobile */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; height: auto; padding: 15px 0; gap: 15px; }
  .hero { padding: 40px 0 100px; }
  .hero h1 { font-size: 2.5rem; }
  .game-wrapper { margin-top: -60px; }
  .iframe-box iframe { height: 450px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}