:root {
  /* Backgrounds */
  --bg-primary: #0F0F12;
  --bg-secondary: #15151A;
  --bg-section: #1C1C22;
  --bg-card: #24242C;
  
  /* Accents */
  --accent-gold: #D6B15E;
  --accent-red: #B23A3A;
  --accent-white: #E8E6E0;
  --accent-gray: #7A7A7A;
  --accent-amber: #E0A84A;
  
  /* Text */
  --text-primary: #F5F5F5;
  --text-secondary: #D0D0D0;
  --text-muted: #9A9A9A;
  
  /* Layout */
  --max-width: 1400px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
}

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

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

/* Global Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }

/* Disclaimer Bar */
.compliance-bar {
  background-color: var(--accent-red);
  color: var(--accent-white);
  text-align: center;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Header & Nav */
.site-header {
  background-color: rgba(15, 15, 18, 0.95);
  border-bottom: 2px solid var(--accent-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Impact', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-gold);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.main-nav a:hover {
  color: var(--accent-white);
}

.btn {
  display: inline-block;
  background: linear-gradient(to bottom, #E0A84A, #D6B15E);
  color: #000;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Impact', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid var(--accent-amber);
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.15);
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('images/cinematic-boxing-arena-spotlights-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-section);
  height: 600px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--accent-gold);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(15, 15, 18, 0.9) 0%, rgba(15, 15, 18, 0.5) 50%, rgba(15, 15, 18, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--accent-white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px #000;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px #000;
}

/* Game Section */
.game-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
  background-image: url('images/dark-stadium-backdrop-structure.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--accent-white);
  text-shadow: 0 0 10px rgba(224, 168, 74, 0.3);
}

.game-wrapper {
  position: relative;
  width: 85%;
  margin: 0 auto;
  background: #000;
  /* Ring ropes border style */
  border: 12px solid var(--accent-red);
  border-radius: 8px;
  padding-top: 48%; /* aspect ratio */
  /* Metallic framing & static glow */
  box-shadow: 0 0 0 6px var(--bg-secondary), 
              0 0 0 14px var(--accent-gray), 
              0 0 40px rgba(224, 168, 74, 0.4);
}

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

/* CTA Banner */
.cta-banner {
  padding: 120px 0;
  background-image: url('images/roaring-stadium-crowd-background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  border-top: 4px solid var(--accent-red);
  border-bottom: 4px solid var(--accent-red);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, rgba(15, 15, 18, 0.4) 0%, rgba(15, 15, 18, 0.95) 100%);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: 4rem;
  color: var(--accent-white);
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(224, 168, 74, 0.5);
}

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

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

.footer-about h4, .footer-links h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

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

.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.badge {
  background-color: var(--bg-card);
  border: 1px solid var(--accent-gray);
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: bold;
  color: var(--accent-white);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.badge-18 {
  font-size: 1.2rem;
  color: var(--accent-red);
  border-color: var(--accent-red);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--bg-section);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.legal-disclaimer {
  max-width: 800px;
  margin: 0 auto 15px;
  color: var(--accent-gray);
}

/* Inner Pages (About, Contact, Terms, etc.) */
.page-header {
  background-image: url('images/boxing-gym-training-scene.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--accent-gold);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 15, 18, 0.85);
}

.page-header h1 {
  position: relative;
  z-index: 10;
  font-size: 3.5rem;
  color: var(--accent-white);
}

.page-content {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.content-box {
  background-color: var(--bg-card);
  border: 2px solid var(--accent-gray);
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content-box h2 {
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-size: 2rem;
  border-bottom: 1px solid var(--bg-section);
  padding-bottom: 10px;
}

.content-box h3 {
  color: var(--accent-white);
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.content-box p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.content-box ul {
  margin: 0 0 20px 20px;
  color: var(--text-secondary);
}

.content-box li {
  margin-bottom: 10px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-white);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  background-color: var(--bg-section);
  border: 1px solid var(--accent-gray);
  padding: 15px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
}

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

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

/* Responsive Rules */
@media (max-width: 1024px) {
  .game-wrapper { width: 95%; padding-top: 55%; }
  .hero h1 { font-size: 3.5rem; }
  .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .game-section { padding: 60px 0; }
  .game-wrapper {
    width: 100%;
    border-width: 6px;
    padding-top: 75%;
    box-shadow: none;
    border-radius: 0;
  }
  .nav-container { flex-direction: column; height: auto; padding: 15px 0; gap: 15px; }
  .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
  .hero { height: 450px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-badges { align-items: center; }
  .cta-content h2 { font-size: 2.5rem; }
  .content-box { padding: 30px 20px; }
}