@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --pink: #ec4899;
  --pink-dim: #be185d;
  --glass: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(236, 72, 153, 0.2);
  --text-w: #f1f5f9;
  --text-m: #94a3b8;
  --text-d: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--text-m); line-height: 1.75; }

.n-head { background: rgba(15,23,42,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--glass-border); position: sticky; top: 0; z-index: 1000; }
.n-head-in { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 60px; }
.n-logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--pink); }
.n-logo span { color: var(--text-w); font-weight: 400; }
.n-menu { list-style: none; display: flex; gap: 1.5rem; }
.n-menu a { color: var(--text-m); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.n-menu a:hover { color: var(--pink); }
.n-burger { display: none; background: none; border: 1px solid var(--pink); color: var(--pink); padding: 5px 10px; cursor: pointer; border-radius: 6px; font-size: 1.1rem; }

.n-hero { padding: 5rem 2rem; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(236,72,153,0.1), transparent 60%); }
.n-hero h1 { font-size: 3rem; font-weight: 900; color: var(--text-w); margin-bottom: 1rem; }
.n-hero h1 em { font-style: normal; color: var(--pink); }
.n-hero p { color: var(--text-m); font-size: 1.1rem; max-width: 660px; margin: 0 auto 2rem; }
.n-cta { display: inline-block; background: var(--pink); color: #fff; padding: 0.85rem 2.5rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.n-cta:hover { background: var(--pink-dim); }
.n-tags { display: flex; justify-content: center; gap: 0.8rem; margin-top: 2rem; flex-wrap: wrap; }
.n-tag { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); padding: 0.35rem 1.1rem; border-radius: 50px; font-size: 0.8rem; color: var(--pink); font-weight: 500; }

.n-sec { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; }
.n-sec h2 { font-size: 2rem; font-weight: 800; color: var(--text-w); text-align: center; margin-bottom: 0.5rem; }
.n-sec .sub { text-align: center; margin-bottom: 3rem; }

.n-game { max-width: 850px; margin: 0 auto 3rem; border-radius: 16px; overflow: hidden; border: 2px solid var(--pink); box-shadow: 0 0 40px rgba(236,72,153,0.15); }
.n-game iframe { width: 100%; height: 500px; border: none; display: block; }

.n-glass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.n-gcard { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); border-radius: 16px; padding: 2rem; transition: border-color 0.3s; }
.n-gcard:hover { border-color: var(--pink); }
.n-gcard-icon { font-size: 2rem; margin-bottom: 0.7rem; }
.n-gcard h3 { color: var(--text-w); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.n-gcard p { font-size: 0.9rem; }

.n-strip { background: linear-gradient(90deg, var(--pink-dim), var(--pink)); padding: 1.2rem 2rem; text-align: center; }
.n-strip p { color: #fff; font-weight: 600; font-size: 0.9rem; }

.n-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.n-block { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2rem; }
.n-block h3 { color: var(--text-w); font-weight: 700; margin-bottom: 0.6rem; }

.n-text { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.n-text h1 { font-size: 2.3rem; font-weight: 900; color: var(--text-w); margin-bottom: 2rem; }
.n-text h2 { font-size: 1.3rem; font-weight: 700; color: var(--pink); margin: 2rem 0 0.8rem; }
.n-text p { margin-bottom: 1rem; }
.n-text ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.n-text ul li { margin-bottom: 0.4rem; }

.n-play-h { text-align: center; padding: 3rem 2rem 1rem; }
.n-play-h h1 { font-size: 2.3rem; font-weight: 900; color: var(--text-w); }
.n-play-note { text-align: center; color: var(--text-d); max-width: 600px; margin: 0.8rem auto 2rem; }

.n-foot { background: var(--navy-light); border-top: 1px solid var(--glass-border); padding: 2.5rem 2rem; text-align: center; }
.n-frow { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.n-frow a { color: var(--text-m); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.n-frow a:hover { color: var(--pink); }
.n-fnote { color: var(--text-d); font-size: 0.78rem; margin-top: 1rem; }

.n-age { position: fixed; inset: 0; background: rgba(15,23,42,0.97); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.n-age-box { background: var(--navy-light); border: 2px solid var(--pink); border-radius: 20px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; }
.n-age-box h2 { color: var(--text-w); font-size: 1.5rem; margin-bottom: 0.8rem; }
.n-age-box p { margin-bottom: 1.5rem; }
.n-age-btns { display: flex; gap: 1rem; justify-content: center; }
.n-yes { background: var(--pink); color: #fff; border: none; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; }
.n-no { background: transparent; border: 1px solid var(--text-d); color: var(--text-d); padding: 0.75rem 2rem; border-radius: 50px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; }
.n-deny { display: none; color: var(--pink); font-weight: 600; margin-top: 1rem; }

@media (max-width: 900px) { .n-glass-grid { grid-template-columns: 1fr 1fr; } .n-twocol { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .n-burger { display: block; }
  .n-menu { display: none; position: absolute; top: 60px; left: 0; width: 100%; background: rgba(15,23,42,0.98); flex-direction: column; padding: 1rem 2rem; border-bottom: 1px solid var(--glass-border); }
  .n-menu.on { display: flex; }
  .n-menu a { padding: 0.6rem 0; display: block; }
  .n-hero h1 { font-size: 2.2rem; }
  .n-glass-grid { grid-template-columns: 1fr; }
  .n-game iframe { height: 380px; }
}
@media (max-width: 480px) { .n-hero h1 { font-size: 1.7rem; } .n-game iframe { height: 280px; } }
