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

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

:root {
  --burnt-orange: #c45e20;
  --warm-amber: #e8943a;
  --cream: #fef5e7;
  --rich-brown: #3a1c08;
  --deep-mahogany: #1e0e04;
  --sand: #d4b896;
  --text-dark: #2c1a0a;
  --text-light: #f5ead8;
  --card-surface: rgba(62,30,10,0.9);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--rich-brown);
}

a { color: var(--burnt-orange); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--warm-amber); }

/* HEADER */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--deep-mahogany);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--burnt-orange);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--warm-amber);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  color: var(--sand);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-nav a:hover { color: var(--warm-amber); }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--warm-amber);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.slide-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--deep-mahogany);
  z-index: 999;
  flex-direction: column;
  padding: 4rem 2rem;
  gap: 1.5rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.5);
}
.slide-menu.open { display: flex; }
.slide-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--sand);
}
.slide-menu .close-slide {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--warm-amber);
  cursor: pointer;
}

/* BANNER */
.banner {
  margin-top: 60px;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, var(--deep-mahogany), #4a200a 50%, var(--rich-brown));
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  min-height: 85vh;
}

.banner-text { max-width: 560px; }

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

.banner-text p {
  color: var(--sand);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--burnt-orange);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.btn-primary:hover {
  background: var(--warm-amber);
  color: var(--deep-mahogany);
}

.banner-visual {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--warm-amber), var(--burnt-orange) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(232,148,58,0.3);
}

.banner-visual svg { width: 180px; height: 180px; }

/* ALERTS BAR */
.alerts-bar {
  background: var(--burnt-orange);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 1.2rem 2rem;
}

.alert-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.alert-tag .badge {
  background: var(--deep-mahogany);
  color: var(--warm-amber);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

/* GAME AREA */
.game-area {
  padding: 4rem 2rem;
  background: #f8eed9;
  text-align: center;
}

.game-area h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.game-area .subtitle {
  color: #8a6e4e;
  margin-bottom: 2rem;
}

.game-embed {
  max-width: 1000px;
  margin: 0 auto;
  border: 4px solid var(--rich-brown);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(58,28,8,0.2);
}

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

/* TWO COLUMN INFO */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

.col-block {
  padding: 4rem 3rem;
}

.col-left {
  background: var(--rich-brown);
  color: var(--text-light);
}
.col-left h2 { color: var(--warm-amber); }
.col-left p { color: var(--sand); }

.col-right {
  background: var(--cream);
}

.col-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.col-block p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}
.feature-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212,184,150,0.3);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '\25C6 ';
  color: var(--warm-amber);
}

/* TESTIMONIALS */
.reviews-section {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #fef5e7, #f8eed9);
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border: 1px solid #e0d0bb;
  border-radius: 8px;
  padding: 1.8rem;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(58,28,8,0.08);
}

.review-card .stars { color: var(--warm-amber); font-size: 1.2rem; margin-bottom: 0.8rem; }
.review-card p { font-size: 0.95rem; color: #5a4230; margin-bottom: 0.8rem; }
.review-card .author { font-weight: 700; color: var(--rich-brown); font-size: 0.9rem; }

/* PAGE CONTENT */
.content-page {
  padding: 6rem 2rem 4rem;
  max-width: 920px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--rich-brown);
}

.content-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--burnt-orange);
}

.content-page p {
  margin-bottom: 1.2rem;
  color: #4a3520;
}

.content-page ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #4a3520;
}
.content-page ul li { margin-bottom: 0.5rem; }

/* PLAY PAGE */
.play-header {
  margin-top: 60px;
  padding: 4rem 2rem 2rem;
  background: var(--rich-brown);
  text-align: center;
}
.play-header h1 { color: var(--warm-amber); font-size: 2.4rem; margin-bottom: 0.8rem; }
.play-header p { color: var(--sand); max-width: 650px; margin: 0 auto; }

/* FOOTER */
.site-footer {
  background: var(--deep-mahogany);
  color: var(--sand);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-nav a { color: var(--sand); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--warm-amber); }

.responsible-links {
  margin-top: 1rem;
  font-size: 0.85rem;
}
.responsible-links a { margin: 0 0.5rem; color: var(--warm-amber); }

.copyright {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(212,184,150,0.5);
}

/* AGE GATE */
.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(30,14,4,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  background: var(--rich-brown);
  border: 2px solid var(--warm-amber);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.age-dialog h2 {
  color: var(--warm-amber);
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.age-dialog p {
  color: var(--sand);
  margin-bottom: 1.8rem;
}

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

.age-actions button {
  padding: 0.7rem 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.age-yes {
  background: var(--burnt-orange);
  color: #fff;
}
.age-yes:hover { background: var(--warm-amber); color: var(--deep-mahogany); }

.age-no {
  background: transparent;
  border: 2px solid var(--sand) !important;
  color: var(--sand);
}
.age-no:hover { background: rgba(212,184,150,0.1); }

.age-denied {
  display: none;
  color: #e85050;
  margin-top: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger-btn { display: block; }

  .banner { flex-direction: column; text-align: center; padding: 4rem 1.5rem 3rem; min-height: auto; }
  .banner-text h1 { font-size: 2.2rem; }
  .banner-visual { width: 200px; height: 200px; }
  .banner-visual svg { width: 110px; height: 110px; }

  .two-col { grid-template-columns: 1fr; }

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

  .alerts-bar { flex-direction: column; align-items: center; gap: 0.8rem; }

  .content-page { padding: 5rem 1.2rem 3rem; }
}

@media (max-width: 480px) {
  .banner-text h1 { font-size: 1.7rem; }
  .game-embed iframe { height: 300px; }
  .age-dialog { padding: 2rem 1.3rem; }
}
