
:root {
  --bg: #0B0E14;
  --section-bg: #111722;
  --surface: #18202D;
  --primary: #C7D2FE;
  --accent: #7DD3FC;
  --text: #F8FAFC;
  --muted: #A8B3C7;
  --border: rgba(199, 210, 254, 0.18);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: .25s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
iframe { border: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(11, 14, 20, 0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 15px 0; }
.header-row, .footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.45rem; font-weight: 700; color: var(--primary); }
.logo-mark { width: 40px; height: 40px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, var(--accent), var(--primary)); position: relative; box-shadow: 0 0 18px rgba(125, 211, 252, 0.26); }
.logo-mark::after { content: ""; position: absolute; inset: 11px; border-radius: 50%; border: 2px solid rgba(11, 14, 20, 0.88); }
.desktop-nav ul, .footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--accent); }
.header-right { display: flex; align-items: center; gap: 16px; }
.auth-actions { display: flex; align-items: center; gap: 12px; }
.auth-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; font-weight: 700; border: 1px solid var(--border); }
.auth-btn:hover { transform: translateY(-2px); border-color: rgba(125,211,252,.45); }
.auth-btn.primary { background: var(--primary); color: #0B0E14; border-color: transparent; }
.age-flag { border: 1px solid var(--primary); border-radius: 999px; padding: 6px 12px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); font-size: .9rem; }
.hamburger, .close-menu { background: none; border: none; color: var(--text); font-size: 1.9rem; cursor: pointer; }
.hamburger { display: none; }
.mobile-menu { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; flex-direction: column; background: rgba(11, 14, 20, 0.98); z-index: 2000; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 18px 0; font-size: 1.5rem; }
.close-menu { position: absolute; right: 24px; top: 18px; }
.hero { min-height: 80vh; display: flex; align-items: center; padding: 100px 0; background: radial-gradient(circle at top right, rgba(125, 211, 252, 0.18), transparent 32%), linear-gradient(135deg, #0B0E14 0%, #111722 100%); }
.hero-split { display: grid; grid-template-columns: 1.18fr .82fr; gap: 52px; align-items: center; }
.hero h1 { font-size: 3.45rem; line-height: 1.08; color: var(--text); margin-bottom: 24px; }
.hero p { font-size: 1.14rem; color: var(--muted); margin-bottom: 30px; }
.hero-visual, .card, .game-card, .contact-card, .iframe-shell, .modal-box { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); }
.hero-visual { display:flex; align-items:center; justify-content:center; padding: 28px; }
.hero-image { display:block; width:100%; max-width:720px; height:auto; object-fit:cover; border-radius:24px; border:1px solid rgba(199,210,254,.14); box-shadow:0 18px 40px rgba(0,0,0,.24); }
.btn-primary { display: inline-block; padding: 15px 38px; border-radius: 999px; font-weight: 700; background: var(--primary); color: #0B0E14; box-shadow: 0 10px 26px rgba(199, 210, 254, .2); }
.btn-primary:hover { transform: translateY(-3px); background: var(--accent); }
.badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.badge { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border); background: rgba(125, 211, 252, 0.08); color: var(--text); font-weight: 700; font-size: .92rem; }
.section { padding: 80px 0; }
.section.alt { background: var(--section-bg); }
.section-title { text-align: center; font-size: 2.4rem; color: var(--primary); margin-bottom: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card { padding: 30px; }
.card:hover, .game-card:hover { transform: translateY(-5px); border-color: rgba(125, 211, 252, 0.45); }
.card p, .section-copy, .contact-card p, .game-info p { color: var(--muted); }
.card h3, .game-info h3 { margin-bottom: 14px; color: var(--text); }
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 32px; }
.game-card { overflow: hidden; }
.game-thumb { display:block; width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:20px 20px 0 0; border-bottom:1px solid rgba(199,210,254,.12); }
.game-info { padding: 24px; text-align: center; }
.contact-card { padding: 28px; margin-top: 20px; }
.contact-card strong { color: var(--text); }
.inline-link { color: var(--accent); text-decoration: underline; }
.site-footer { margin-top: 50px; background: #0F141D; border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-brand { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.footer-bottom { padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--border); text-align: center; font-size: .88rem; }
.footer-bottom p { color: var(--muted); margin-bottom: 10px; }
.modal-overlay { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, .8); backdrop-filter: blur(12px); }
.modal-box { max-width: 520px; padding: 44px; text-align: center; }
.age-badge-large { width: 82px; height: 82px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid var(--primary); color: var(--primary); font-size: 2rem; font-weight: 700; }
.secondary-btn { background: transparent; color: var(--muted); border: none; margin-top: 14px; cursor: pointer; }
.iframe-page { padding: 90px 0; min-height: calc(100vh - 220px); }
.iframe-shell { padding: 20px; }
.game-frame { width: 100%; height: 68vh; min-height: 540px; border-radius: 14px; background: #0F141D; }
.frame-note { color: var(--muted); margin-top: 14px; font-size: .96rem; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; margin-bottom: 14px; }
html, body.frame-page { height: 100%; }
body.frame-page { overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.mini-header { height: 68px; display:flex; align-items:center; justify-content:space-between; gap:12px; padding: 10px 20px; border-bottom:1px solid var(--border); background: rgba(11,14,20,.96); }
.mini-meta { color: var(--muted); font-size: .95rem; font-weight: 700; }
.launch-shell { min-height: 0; height: calc(100svh - 68px); padding: 10px; }
.game-frame.fixed-fit { width: 100%; height: 100%; min-height: 0; border-radius: 18px; background: #0F141D; }
@media (max-width: 900px) { .hero { min-height: auto; padding: 72px 0; } .hero-split { grid-template-columns: 1fr; gap: 28px; text-align: center; } .hero h1 { font-size: 2.55rem; } .hero p { font-size: 1.02rem; } .badges { justify-content: center; margin-top: 24px; } .cookie-banner__content { flex-direction: column; align-items: flex-start; } }
@media (max-width: 768px) { .desktop-nav,.auth-actions { display: none; } .hamburger { display: block; } .container { padding: 0 16px; } .site-header { padding: 12px 0; } .header-row { align-items: center; } .footer-top { flex-direction: column; align-items: flex-start; } .header-right { width: 100%; justify-content: space-between; } .age-flag { font-size: .84rem; padding: 5px 10px; } .hero { padding: 58px 0 64px; } .hero h1 { font-size: 2.15rem; margin-bottom: 18px; } .section { padding: 56px 0; } .section-title { font-size: 1.95rem; margin-bottom: 28px; } .card, .contact-card, .hero-visual { padding: 22px; } .game-grid, .grid-3 { grid-template-columns: 1fr; gap: 22px; } .footer-links { gap: 12px; } .game-frame { min-height: 420px; height: 58vh; } }
@media (max-width: 560px) { .container { padding: 0 14px; } .logo { font-size: 1.15rem; gap: 10px; } .logo-mark { width: 34px; height: 34px; } .header-right { gap: 10px; } .age-flag span { white-space: nowrap; } .hero { padding: 42px 0 52px; } .hero h1 { font-size: 1.84rem; } .hero p, .card p, .section-copy, .contact-card p, .game-info p { font-size: .97rem; } .btn-primary { width: 100%; text-align: center; padding: 14px 18px; } .badges { gap: 10px; } .badge { font-size: .82rem; } .mobile-menu li { margin: 14px 0; font-size: 1.24rem; } .site-footer { margin-top: 28px; padding: 40px 0 24px; } .mini-header { height: 56px; padding: 8px 12px; gap: 8px; } .mini-header .logo { font-size: .98rem; gap: 8px; } .mini-header .logo-mark { width: 28px; height: 28px; } .mini-meta { font-size: .72rem; } .launch-shell { height: calc(100svh - 56px); padding: 6px; } .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 16px; } .cookie-banner__actions { width: 100%; flex-direction: column; } .cookie-banner__btn { width: 100%; } }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 5000;
  background: rgba(24, 32, 45, 0.98);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner__title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-banner__text {
  color: var(--muted);
  font-size: .96rem;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  border: none;
  cursor: pointer;
  min-width: 120px;
}
.cookie-banner__btn--secondary {
  margin-top: 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
}
.cookie-banner__btn--secondary:hover {
  border-color: rgba(125,211,252,.45);
  color: var(--accent);
}
