:root {
  /* Color Palette */
  --bg-primary: #0b0b0c;
  --bg-secondary: #1a1a1a;
  --bg-card: #2b2118;
  
  --light-surface: #f5f5f5;
  --light-paper: #e7dfd5;
  
  --brown-primary: #3b2f2f;
  --brown-accent: #5c4033;
  
  --text-primary: #ffffff;
  --text-secondary: #d6d3d1;
  --text-muted: #a8a29e;

  /* Layout */
  --max-width: 1320px;
  --game-max-width: 1300px;
  --border-radius: 16px;
  
  /* Spacing */
  --space-section-desktop: 100px;
  --space-section-tablet: 80px;
  --space-section-mobile: 60px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Georgia', serif; /* Classic book feel */
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', 'Georgia', serif;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--light-paper);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brown-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 0.875rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--brown-accent);
  color: var(--text-primary);
}

.btn-primary:hover {
  background-color: var(--brown-primary);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--brown-accent);
  color: var(--light-paper);
}

.btn-outline:hover {
  background-color: var(--brown-accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brown-primary);
  z-index: 1000;
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--light-paper);
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--brown-accent);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light-paper);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    font-size: 1.25rem;
  }
  .header-cta { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-section-mobile) 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11,11,12,0.3) 0%, rgba(11,11,12,1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--light-paper);
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Game Section */
.game-section {
  padding: var(--space-section-mobile) 0;
  background-color: var(--bg-primary);
}

@media (min-width: 768px) {
  .game-section { padding: var(--space-section-tablet) 0; }
}

@media (min-width: 1024px) {
  .game-section { padding: var(--space-section-desktop) 0; }
}

.game-wrapper {
  max-width: var(--game-max-width);
  margin: 0 auto;
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary);
  border: 2px solid var(--brown-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .game-wrapper { aspect-ratio: 4 / 3; width: 100%; }
}

.game-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--bg-card);
}

/* Features / Info Section */
.info-section {
  padding: var(--space-section-mobile) 0;
  background-color: var(--bg-secondary);
}

@media (min-width: 768px) {
  .info-section { padding: var(--space-section-tablet) 0; }
}

@media (min-width: 1024px) {
  .info-section { padding: var(--space-section-desktop) 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--light-paper);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--brown-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  border-color: var(--brown-accent);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--light-paper);
}

.card h3 {
  font-size: 1.5rem;
  color: var(--light-paper);
  margin-bottom: 15px;
}

/* Page Content (Standard text pages) */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--brown-primary);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--light-paper);
}

.page-content {
  padding: var(--space-section-mobile) 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  margin-top: 40px;
  color: var(--light-paper);
  border-bottom: 1px solid var(--brown-primary);
  padding-bottom: 10px;
}

.page-content p {
  margin-bottom: 20px;
}

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--light-paper);
  font-family: sans-serif;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--bg-primary);
  border: 1px solid var(--brown-primary);
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--brown-primary);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--light-paper);
  margin-bottom: 20px;
  font-family: sans-serif;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brown-accent);
}

.footer-disclaimer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--bg-secondary);
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 10px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* 18+ badge */
.badge-18 {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-family: sans-serif;
}