:root {
  --bg-dark: #1a120b;
  --bg-panel: #2a1a10;
  --bg-sand: rgba(255, 244, 230, 0.06);
  --accent-orange: #c2410c;
  --accent-gold: #f59e0b;
  --accent-dust: #fde68a;
  --accent-red: #7c2d12;
  --text-main: #fff7ed;
  --text-sec: #fed7aa;
  --text-muted: #d6a77a;
  
  --max-width: 1320px;
  --border-radius: 20px;
  --border-radius-btn: 16px;
  --spacing-section: 110px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at top center, rgba(38, 24, 15, 0.8) 0%, var(--bg-dark) 100%);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 18, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  transition: var(--transition);
}

.site-header:hover {
  background: rgba(26, 18, 11, 0.95);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
  color: var(--accent-dust);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo img {
  height: 40px;
  width: auto;
}

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--accent-orange);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-btn);
  background: linear-gradient(to right, var(--accent-red), var(--accent-orange), var(--accent-gold));
  background-size: 200% auto;
  color: var(--text-main) !important;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
}

.btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/photo-1518557973344-93ff9ee5fa09.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 18, 11, 0.95) 0%, rgba(42, 26, 16, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  color: var(--accent-dust);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-sec);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-visual {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(30%) contrast(110%);
}

/* Game Section */
.game-section {
  padding: var(--spacing-section) 0;
  background: var(--bg-dark);
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--accent-dust);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.game-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-panel);
  border-radius: var(--border-radius);
  border: 2px solid rgba(245, 158, 11, 0.3);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

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

/* Fallback/Loading */
.game-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-panel);
  z-index: -1;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--accent-orange);
  border-top-color: transparent;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-panel));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-sand);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(245, 158, 11, 0.1);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 244, 230, 0.09);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--accent-dust);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Interior Pages */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom, rgba(26, 18, 11, 0.9), var(--bg-dark)), url('images/photo-1548682855-4648eefec81a.png') center/cover;
  text-align: center;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--accent-dust);
  margin-bottom: 1rem;
}

.page-content {
  padding: var(--spacing-section) 0;
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  background: var(--bg-panel);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-block h2 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

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

.content-block ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.content-block li {
  margin-bottom: 0.5rem;
}

/* Forms */
.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-sec);
  font-weight: 500;
}

.form-control {
  padding: 1rem;
  background: var(--bg-dark);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

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

/* Footer */
.site-footer {
  background: var(--bg-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--accent-dust);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

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