@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --gold: #d4a843;
  --gold-light: #f0d080;
  --navy: #0b1628;
  --navy-light: #152238;
  --cream: #faf5eb;
  --text-body: #c8c0b0;
  --text-dark: #2a2218;
  --accent: #8b6f3a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--cream);
  min-height: 100vh;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* NAV */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(11, 22, 40, 0.95);
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
  backdrop-filter: blur(10px);
}

.navbar-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1.5rem;
}

.site-logo { display: flex; align-items: center; gap: 0.7rem; }

.site-logo svg { width: 40px; height: 40px; }

.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a { color: var(--text-body); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 1px; }
.mobile-toggle.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 62px; left: 0; right: 0;
    flex-direction: column; background: rgba(11, 22, 40, 0.98);
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    transform: translateY(-120%); transition: transform 0.35s;
  }
  .nav-menu.visible { transform: translateY(0); }
}

/* HERO */
.grand-hero {
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy) 100%);
  position: relative;
}

.grand-hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 500px; height: 500px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.grand-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--gold);
  margin-bottom: 1.2rem; position: relative;
  line-height: 1.15;
}

.grand-hero p {
  font-size: 1.1rem; color: var(--text-body);
  max-width: 700px; margin: 0 auto 2.5rem;
  position: relative;
}

.gold-btn {
  display: inline-block; padding: 0.9rem 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--navy); font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem; border-radius: 4px;
  letter-spacing: 1px; transition: all 0.3s; text-transform: uppercase;
}
.gold-btn:hover { box-shadow: 0 6px 30px rgba(212, 168, 67, 0.35); color: var(--navy); transform: translateY(-2px); }

/* DIVIDER */
.ornament { text-align: center; padding: 1.5rem 0; color: var(--gold); font-size: 1.5rem; opacity: 0.4; letter-spacing: 8px; }

/* NOTICES */
.notice-columns {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1300px; margin: 0 auto; padding: 2rem 1.5rem;
}

@media (max-width: 768px) { .notice-columns { grid-template-columns: 1fr; } }

.notice-item {
  background: var(--navy-light); border: 1px solid rgba(212, 168, 67, 0.15);
  padding: 2rem; text-align: center; border-radius: 2px;
  transition: border-color 0.3s;
}
.notice-item:hover { border-color: var(--gold); }
.notice-item .n-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.notice-item h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.5rem; }
.notice-item p { color: var(--text-body); font-size: 0.95rem; }

/* GAME */
.game-showcase {
  max-width: 1300px; margin: 3rem auto; padding: 0 1.5rem;
}
.game-showcase h2 {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold); margin-bottom: 1.5rem;
}
.game-container {
  max-width: 960px; margin: 0 auto;
  border: 2px solid rgba(212, 168, 67, 0.3);
  background: #000; border-radius: 2px;
  overflow: hidden;
}
.game-container iframe { display: block; width: 100%; height: 600px; border: none; }
@media (max-width: 768px) { .game-container iframe { height: 380px; } }

/* PILLARS */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1300px; margin: 3rem auto; padding: 0 1.5rem;
}
.pillar {
  border-top: 3px solid var(--gold); padding: 1.5rem;
  background: var(--navy-light);
}
.pillar h4 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--text-body); font-size: 0.95rem; }

/* ABOUT */
.about-luxe {
  max-width: 1300px; margin: 3rem auto; padding: 3rem 1.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  text-align: center;
}
.about-luxe h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--gold); margin-bottom: 1.2rem; }
.about-luxe p { color: var(--text-body); max-width: 850px; margin: 0 auto 1rem; font-size: 1.05rem; }

/* CONTENT PAGE */
.content-area {
  max-width: 900px; margin: 0 auto; padding: 7rem 1.5rem 3rem;
}
.content-area h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--gold); margin-bottom: 1.5rem; }
.content-area h2 { font-size: 1.3rem; color: var(--gold-light); margin: 2rem 0 0.8rem; }
.content-area p, .content-area li { color: var(--text-body); margin-bottom: 0.8rem; }
.content-area ul, .content-area ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* PLAY */
.play-main { max-width: 1300px; margin: 0 auto; padding: 7rem 1.5rem 3rem; }
.play-main h1 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--gold); margin-bottom: 1rem; }
.play-desc { text-align: center; color: var(--text-body); max-width: 700px; margin: 0 auto 2rem; }

/* FOOTER */
.grand-footer {
  background: var(--navy-light); border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding: 3rem 1.5rem; margin-top: 4rem;
}
.footer-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem;
}
.footer-col p { color: var(--text-body); font-size: 0.9rem; margin-top: 0.4rem; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: var(--text-body); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-copy {
  text-align: center; color: var(--text-body); font-size: 0.85rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

/* AGE OVERLAY */
.age-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11, 22, 40, 0.92); display: flex;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.age-screen.dismissed { display: none; }
.age-panel {
  background: var(--navy-light); border: 1px solid var(--gold);
  padding: 3rem 2.5rem; text-align: center;
  max-width: 460px; width: 92%; border-radius: 4px;
}
.age-panel .age-crest { font-size: 3.5rem; margin-bottom: 1rem; }
.age-panel h2 { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.8rem; }
.age-panel p { color: var(--text-body); margin-bottom: 1.5rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-accept {
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--navy); border: none; font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border-radius: 3px; transition: all 0.2s;
}
.age-accept:hover { box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3); }
.age-decline {
  padding: 0.7rem 2rem; background: transparent;
  color: var(--text-body); border: 1px solid var(--text-body);
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; border-radius: 3px;
  transition: all 0.2s;
}
.age-decline:hover { border-color: #c0392b; color: #c0392b; }
