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

:root {
  --sunset-orange: #e85d26;
  --warm-red: #c0392b;
  --golden: #f39c12;
  --cream: #fdf6ee;
  --dark-brown: #2c1810;
  --mid-brown: #5c3a28;
  --text-main: #3a2218;
  --text-soft: #7a5a48;
  --border-warm: #e8d5c4;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.8;
}

/* NAV */
.lx-nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
}

.lx-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--golden);
  text-decoration: none;
  letter-spacing: 1px;
}

.lx-links { display: flex; gap: 1.8rem; }

.lx-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.lx-links a:hover { color: var(--golden); }

.lx-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--golden);
  color: var(--golden);
  padding: 6px 12px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* HERO */
.lx-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark-brown) 0%, var(--warm-red) 50%, var(--sunset-orange) 80%, var(--golden) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 2rem 80px;
  color: #fff;
}

.lx-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.lx-hero p {
  font-size: 1.15rem;
  max-width: 650px;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.lx-btn-primary {
  display: inline-block;
  padding: 15px 42px;
  background: var(--golden);
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
}

.lx-btn-primary:hover { background: #e8a400; transform: translateY(-2px); }

/* NOTICE BAR */
.lx-notice-bar {
  background: var(--dark-brown);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.lx-notice-bar span { display: flex; align-items: center; gap: 0.5rem; }

/* GAME */
.lx-game-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.lx-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--dark-brown);
}

.lx-section-sub {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}

.lx-game-embed {
  background: var(--dark-brown);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.2);
}

.lx-game-embed iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
}

/* ABOUT GRID */
.lx-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.lx-about-cell {
  padding: 4rem 3rem;
}

.lx-about-cell:nth-child(1) { background: var(--dark-brown); color: #fff; }
.lx-about-cell:nth-child(2) { background: var(--sunset-orange); color: #fff; }
.lx-about-cell:nth-child(3) { background: var(--golden); color: var(--dark-brown); }
.lx-about-cell:nth-child(4) { background: var(--warm-red); color: #fff; }

.lx-about-cell h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lx-about-cell p { opacity: 0.9; font-size: 1rem; }

/* TEXT BLOCK */
.lx-text-block {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.lx-text-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
}

.lx-text-block p { color: var(--text-soft); margin-bottom: 1rem; font-size: 1.05rem; }

/* CONTENT PAGE */
.lx-page {
  padding: 100px 2rem 60px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 75vh;
}

.lx-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
}

.lx-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: var(--sunset-orange);
}

.lx-page p { color: var(--text-soft); margin-bottom: 1rem; }
.lx-page ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--text-soft); }
.lx-page ul li { margin-bottom: 0.4rem; }

/* PLAY PAGE */
.lx-play-area {
  padding: 90px 2rem 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.lx-play-area h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--dark-brown);
}

.lx-play-note { text-align: center; color: var(--text-soft); margin-bottom: 2rem; }

/* FOOTER */
.lx-footer {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
  text-align: center;
}

.lx-footer-links { margin-bottom: 1.5rem; }

.lx-footer-links a {
  color: var(--golden);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.88rem;
}

.lx-footer-links a:hover { text-decoration: underline; }

.lx-footer-copy { font-size: 0.8rem; opacity: 0.5; }

/* AGE GATE */
.lx-age-gate {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lx-age-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lx-age-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.lx-age-card p { color: var(--text-soft); margin-bottom: 1.5rem; }

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

.lx-age-confirm {
  padding: 11px 32px;
  background: var(--sunset-orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.lx-age-deny {
  padding: 11px 32px;
  background: transparent;
  color: var(--text-soft);
  border: 2px solid var(--border-warm);
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .lx-menu-btn { display: block; }

  .lx-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--dark-brown);
    flex-direction: column;
    padding: 1.5rem 2.5rem;
    gap: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .lx-links.active { transform: translateX(0); }

  .lx-hero h1 { font-size: 2.2rem; }
  .lx-about-grid { grid-template-columns: 1fr; }
  .lx-game-embed iframe { height: 400px; }
  .lx-page h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .lx-hero h1 { font-size: 1.7rem; }
  .lx-game-embed iframe { height: 300px; }
  .lx-nav-bar { padding: 0 1.2rem; }
}
