:root {
  /* Colors */
  --bg-primary: #1f2a1f;
  --bg-secondary: #2a3326;
  --surface-card: rgba(255, 255, 255, 0.06);
  --accent-primary: #d6a85a;
  --accent-secondary: #7fb069;
  --accent-highlight: #f2e6c9;
  --text-primary: #f8f5e6;
  --text-secondary: #c9c2ad;
  
  /* Typography */
  --font-main: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Spacing */
  --spacing-mobile: 50px;
  --spacing-tablet: 70px;
  --spacing-desktop: 100px;
  --pad-mobile: 16px;
  --pad-tablet: 24px;
  --pad-desktop: 32px;
  
  /* Borders */
  --radius-btn: 14px;
  --radius-card: 18px;
  --border-subtle: 1px solid var(--accent-primary);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

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

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

/* Layout Utilities */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}

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

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

.section {
  padding: var(--spacing-mobile) 0;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent-highlight);
}

.btn-secondary {
  background-color: var(--accent-secondary);
  color: var(--bg-primary);
}

.btn-secondary:hover {
  background-color: var(--text-primary);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background-color: var(--bg-primary);
  border-bottom: var(--border-subtle);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-highlight);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links a:hover {
  color: var(--accent-primary);
}

.nav-cta {
  display: flex;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--bg-secondary);
  border-bottom: var(--border-subtle);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-mobile) 0;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: var(--spacing-desktop) 0;
  }
}

.hero-title {
  font-size: 3rem;
  color: var(--accent-highlight);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.hero-disclaimer {
  background-color: var(--surface-card);
  border: 1px solid var(--accent-secondary);
  border-radius: var(--radius-card);
  padding: 16px;
  margin: 32px auto 0;
  max-width: 600px;
}

.hero-disclaimer p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--accent-highlight);
}

/* Game Section */
.game-section {
  background-color: var(--bg-primary);
}

.game-wrapper {
  background-color: var(--bg-secondary);
  border: var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 16px;
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.game-iframe-container {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Content Pages */
.page-header {
  text-align: center;
  margin-bottom: var(--spacing-mobile);
}

.page-title {
  font-size: 2.5rem;
  color: var(--accent-highlight);
  margin-bottom: 16px;
}

.content-card {
  background-color: var(--surface-card);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-bottom: 32px;
}

.content-card h2 {
  color: var(--accent-primary);
  margin-bottom: 16px;
  margin-top: 24px;
}

.content-card h2:first-child {
  margin-top: 0;
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--accent-secondary);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-main);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

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

/* Footer */
.footer {
  background-color: var(--bg-secondary);
  border-top: var(--border-subtle);
  padding: var(--spacing-mobile) 0 32px;
}

.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 h3 {
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
}

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

.footer-disclaimer {
  background-color: var(--bg-primary);
  padding: 24px;
  border-radius: var(--radius-card);
  margin-bottom: 32px;
  text-align: center;
}

.footer-disclaimer p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Mobile Nav Toggle (Static approach for purity, visible by default) */
@media (max-width: 767px) {
  .nav-links {
    display: none; /* In a real static build without JS, this would be a full menu or handled via CSS toggle */
  }
  .nav-cta {
    display: none;
  }
}