@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&family=Cormorant+Garamond:wght@400;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0b1128;
  --panel: #111d40;
  --card: #182650;
  --royal: #3b6cf5;
  --silver: #c0c8e0;
  --bright: #e8ecf8;
  --accent: #f0b429;
  --dim: #7a88b0;
  --line: #253260;
}

html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--navy); color: var(--bright); line-height: 1.75; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; }
a { color: var(--royal); text-decoration: none; transition: 0.25s; }
a:hover { color: var(--accent); }

/* HEADER */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; height: 62px; z-index: 999;
  background: rgba(11,17,40,0.96); display: flex; align-items: center;
  justify-content: space-between; padding: 0 2rem; border-bottom: 1px solid var(--line);
}
.hdr-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.hdr-icon { width: 30px; height: 30px; background: var(--royal); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hdr-icon::after { content: 'G'; color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 0.9rem; }
.hdr ul { display: flex; gap: 1.5rem; list-style: none; }
.hdr ul a { color: var(--silver); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.hdr ul a:hover { color: var(--accent); }
.hdr-ham { display: none; background: none; border: none; cursor: pointer; }
.hdr-ham span { display: block; width: 24px; height: 2px; background: var(--silver); margin: 5px 0; }

@media (max-width: 768px) {
  .hdr-ham { display: block; }
  .hdr ul { position: fixed; top: 62px; left: 0; right: 0; background: rgba(11,17,40,0.98); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; transform: translateY(-120%); transition: transform 0.3s; }
  .hdr ul.show { transform: translateY(0); }
}

/* HERO */
.hero-section {
  margin-top: 62px; padding: 6rem 2rem 4rem; text-align: center;
  background: linear-gradient(180deg, var(--panel) 0%, var(--navy) 100%);
  position: relative;
}
.hero-section::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,108,245,0.12), transparent 60%);
}
.hero-section h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); position: relative; z-index: 1; margin-bottom: 1rem; }
.hero-section h1 .accent { color: var(--accent); }
.hero-section > p { color: var(--dim); font-size: 1.1rem; max-width: 620px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.hero-cta {
  display: inline-block; padding: 13px 38px; background: var(--royal); color: #fff;
  font-weight: 700; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
  transition: 0.3s; position: relative; z-index: 1;
}
.hero-cta:hover { background: var(--accent); color: var(--navy); }

/* NOTICE STRIP */
.notice-strip { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ns-item { flex: 1; padding: 2rem; text-align: center; border-right: 1px solid var(--line); }
.ns-item:last-child { border-right: none; }
.ns-item .ico { font-size: 1.8rem; margin-bottom: 0.5rem; }
.ns-item h3 { font-size: 1rem; color: var(--accent); margin-bottom: 0.4rem; }
.ns-item p { color: var(--dim); font-size: 0.88rem; }
@media (max-width: 768px) { .notice-strip { flex-direction: column; } .ns-item { border-right: none; border-bottom: 1px solid var(--line); } .ns-item:last-child { border-bottom: none; } }

/* GAME */
.game-sec { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.game-sec h2 { text-align: center; font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--accent); margin-bottom: 1.5rem; }
.game-box { border: 2px solid var(--line); border-radius: 14px; overflow: hidden; background: #0a0a0a; }
.game-box iframe { display: block; width: 100%; height: 600px; border: none; }
@media (max-width: 768px) { .game-box iframe { height: 380px; } }

/* CARDS ROW */
.cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.crd { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 2rem; }
.crd h3 { color: var(--royal); font-size: 1.15rem; margin-bottom: 0.6rem; }
.crd p { color: var(--dim); font-size: 0.92rem; }

/* METRICS */
.metrics { background: var(--panel); padding: 3rem 2rem; display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; text-align: center; }
.metric-big { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--royal); }
.metric-lbl { font-size: 0.82rem; color: var(--dim); margin-top: 0.3rem; }

/* FOOTER */
.ftr { background: var(--panel); border-top: 1px solid var(--line); padding: 2.5rem 2rem; text-align: center; }
.ftr-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ftr-nav a { color: var(--dim); font-size: 0.85rem; }
.ftr-rsp { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.ftr-rsp p { font-size: 0.8rem; color: var(--dim); margin-bottom: 0.5rem; }
.ftr-rsp a { color: var(--dim); margin: 0 0.7rem; font-size: 0.8rem; }
.ftr-c { margin-top: 1rem; font-size: 0.75rem; color: var(--dim); }

/* INNER */
.inn-top { margin-top: 62px; padding: 4.5rem 2rem 2rem; text-align: center; background: var(--panel); }
.inn-top h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.inn-top p { color: var(--dim); max-width: 530px; margin: 0 auto; }
.inn-main { max-width: 860px; margin: 0 auto; padding: 2.5rem 2rem 4rem; }
.inn-main h2 { font-size: 1.35rem; color: var(--royal); margin: 2rem 0 0.7rem; }
.inn-main p { color: var(--dim); margin-bottom: 1rem; font-size: 0.93rem; }
.inn-main ul { color: var(--dim); margin: 0.7rem 0 1rem 1.5rem; }

/* PLAY */
.play-area { margin-top: 62px; padding: 3rem 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.play-area h1 { text-align: center; margin-top: 62px; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.7rem; }
.play-note { text-align: center; color: var(--dim); max-width: 600px; margin: 0 auto 2rem; }

/* AGE */
.age-cover { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-panel { background: var(--card); border: 2px solid var(--royal); border-radius: 16px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; }
.age-panel h2 { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.7rem; }
.age-panel p { color: var(--dim); margin-bottom: 1.5rem; }
.age-acts { display: flex; gap: 1rem; justify-content: center; }
.ag { padding: 10px 30px; border-radius: 50px; border: none; font-weight: 700; cursor: pointer; transition: 0.3s; font-size: 0.93rem; }
.ag:hover { transform: scale(1.04); }
.ag-y { background: var(--royal); color: #fff; }
.ag-n { background: transparent; border: 2px solid var(--dim); color: var(--dim); }
.blocked { display: none; text-align: center; }
.blocked h2 { color: #e53935; margin-bottom: 0.7rem; }
.blocked p { color: var(--dim); }
.vanish { display: none !important; }
