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

:root {
  --gold: #d4a017;
  --gold-light: #f0c850;
  --cream: #faf5e8;
  --espresso: #1c1209;
  --mahogany: #3d1e0a;
  --card-bg: #2a1505;
  --text-light: #f5ead6;
  --text-dim: #b8a080;
  --border-gold: rgba(212, 160, 23, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--espresso);
  color: var(--text-light);
  line-height: 1.75;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

a { color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(28, 18, 9, 0.98), rgba(28, 18, 9, 0.92));
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
  height: 68px;
  border-bottom: 2px solid var(--border-gold);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
}

.brand svg { width: 34px; height: 34px; }

.main-nav { list-style: none; display: flex; gap: 2rem; }

.main-nav a {
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover, .main-nav a.current {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 1px;
  transition: all 0.3s;
}

.menu-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* Hero - Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5%;
  background: linear-gradient(135deg, var(--espresso), var(--mahogany));
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.hero-text h1 span { color: var(--gold-light); }

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 520px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 0.3s, box-shadow 0.3s;
  width: fit-content;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.35);
  color: var(--espresso);
}

.hero-visual {
  background: linear-gradient(180deg, var(--mahogany), #0d0805);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12), transparent 70%);
}

.hero-diamond {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float 6s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Notices */
.important-notices {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.8rem 2rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  flex-wrap: wrap;
}

.imp-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-light);
}

.imp-notice .ni { font-size: 1.4rem; }

/* Game */
.game-area {
  padding: 4rem 3%;
  text-align: center;
  background: linear-gradient(180deg, var(--espresso), #120a03);
}

.game-area h2 {
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.game-frame {
  max-width: 1000px;
  margin: 0 auto;
  border: 3px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.game-frame iframe {
  width: 100%;
  height: 620px;
  border: none;
  display: block;
}

/* Cards grid */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 3%;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.12);
}

.highlight-card .hc-icon { font-size: 2.4rem; margin-bottom: 1rem; }

.highlight-card h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.highlight-card p { color: var(--text-dim); font-size: 0.95rem; }

/* Prose */
.prose-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 3%;
}

.prose-section h2 {
  font-size: 1.9rem;
  color: var(--cream);
  text-align: center;
  margin-bottom: 1.5rem;
}

.prose-section p { color: var(--text-dim); margin-bottom: 1.2rem; }

/* Content pages */
.page-hero {
  padding: 6rem 3% 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--mahogany), var(--espresso));
}

.page-hero h1 { font-size: 2.6rem; color: var(--cream); }

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 3%;
}

.page-content h2 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin: 2rem 0 0.8rem;
}

.page-content p, .page-content li {
  color: var(--text-dim);
  margin-bottom: 0.7rem;
  line-height: 1.8;
}

.page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* Footer */
.site-footer {
  background: #0d0805;
  border-top: 2px solid var(--border-gold);
  padding: 3rem 3% 1.5rem;
  text-align: center;
}

.foot-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.foot-nav a { color: var(--text-dim); font-size: 0.9rem; }
.foot-nav a:hover { color: var(--gold-light); }

.foot-responsible {
  padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
  margin-top: 1rem;
}

.foot-responsible p { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.foot-responsible a { margin: 0 0.6rem; }

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 7, 2, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.age-dialog h2 { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 1rem; }
.age-dialog p { color: var(--text-dim); margin-bottom: 2rem; }

.age-actions { display: flex; gap: 1rem; justify-content: center; }

.age-actions button {
  padding: 11px 34px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-confirm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso);
}

.btn-deny {
  background: transparent;
  border: 2px solid var(--text-dim) !important;
  color: var(--text-dim);
}

.age-actions button:hover { transform: scale(1.05); }

.deny-msg {
  color: #e74c3c;
  font-weight: 700;
  margin-top: 1rem;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(28, 18, 9, 0.98);
    padding: 1.5rem 3%;
    gap: 1rem;
    border-bottom: 2px solid var(--border-gold);
  }

  .main-nav.open { display: flex; }

  .hero-split { grid-template-columns: 1fr; }

  .hero-visual { min-height: 300px; }

  .hero-text h1 { font-size: 2rem; }

  .game-frame iframe { height: 400px; }

  .important-notices { flex-direction: column; align-items: center; gap: 0.8rem; }
}
