:root {
  --color-primary-red: #7F1D1D;
  --color-luxury-gold: #FACC15;
  --color-dark-black: #09090B;
  --color-warm-bronze: #92400E;
  --color-soft-cream: #FEF3C7;
  
  --spacing-desktop: 120px;
  --spacing-tablet: 80px;
  --spacing-mobile: 60px;
  
  --max-width: 1280px;
  --radius-btn: 18px;
  --radius-card: 24px;
  
  --glass-bg: rgba(9, 9, 11, 0.7);
  --glass-border: rgba(250, 204, 21, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--color-dark-black);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(127, 29, 29, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(146, 64, 14, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--color-soft-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--color-soft-cream);
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(to right, var(--color-soft-cream), var(--color-luxury-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-luxury-gold);
}

h3 {
  font-size: 1.5rem;
  color: var(--color-soft-cream);
}

p {
  margin-bottom: 1.5rem;
  color: rgba(254, 243, 199, 0.8);
}

/* Layout Spacing */
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;
  }
}

/* Glass & Premium UI */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-shadow);
}

/* Header / Command Bar */
.command-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.top-compliance-bar {
  background: var(--color-primary-red);
  color: var(--color-soft-cream);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;
  letter-spacing: 0.5px;
}

.top-compliance-bar span {
  color: var(--color-luxury-gold);
  font-weight: 800;
}

.top-compliance-bar strong {
  color: var(--color-luxury-gold);
}

@media (max-width: 768px) {
  .top-compliance-bar {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

.command-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-luxury-gold);
  text-transform: uppercase;
}

.brand-logo img {
  height: 44px;
  width: auto;
  border-radius: 0;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-red), #5a1111);
  color: var(--color-soft-cream);
  border: 1px solid var(--color-warm-bronze);
  box-shadow: 0 4px 15px rgba(127, 29, 29, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #992222, var(--color-primary-red));
  transform: translateY(-2px);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-luxury-gold);
  border: 1px solid var(--color-luxury-gold);
}

.btn-secondary:hover {
  background: rgba(250, 204, 21, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px; /* Offset for taller header */
  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, transparent, var(--color-dark-black));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Game Showcase Section */
.game-showcase {
  position: relative;
  z-index: 10;
}

.game-header {
  text-align: center;
  margin-bottom: 3rem;
}

.game-container {
  padding: 1rem;
  border: 1px solid var(--color-warm-bronze);
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.1);
}

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

.game-info {
  margin-top: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .game-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .game-description {
    max-width: 60%;
  }
}

/* Game Info Compliance Notice */
.compliance-notice {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(127, 29, 29, 0.15);
  border-left: 4px solid var(--color-primary-red);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(254, 243, 199, 0.9);
  line-height: 1.5;
}

.compliance-notice strong {
  color: var(--color-luxury-gold);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.feature-card {
  padding: 2rem;
  transition: transform 0.3s ease;
  border-top: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-top: 2px solid var(--color-luxury-gold);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Content Pages (About, Terms, etc.) */
.page-header {
  padding-top: 180px; /* Offset for taller header */
  padding-bottom: 50px;
  text-align: center;
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
}

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

.text-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.text-content h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.text-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(254, 243, 199, 0.8);
}

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

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  color: var(--color-luxury-gold);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-warm-bronze);
  border-radius: 12px;
  color: var(--color-soft-cream);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-luxury-gold);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.2);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

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

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

.footer-links h4 {
  color: var(--color-luxury-gold);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.legal-disclaimer {
  text-align: center;
  padding: 2rem;
  background: rgba(127, 29, 29, 0.1);
  border: 1px solid var(--color-primary-red);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.legal-disclaimer p {
  margin: 0;
  color: var(--color-soft-cream);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-disclaimer strong {
  color: var(--color-luxury-gold);
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(254, 243, 199, 0.5);
}