:root {
  /* Core Colors */
  --deep-charcoal: #0f1115;
  --warm-stone: #1a1d22;
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-glass-hover: rgba(255, 255, 255, 0.08);
  
  /* Accents */
  --liquid-gold: #d4af37;
  --champagne-glow: #f5e6c4;
  --soft-bronze: #b8965a;
  
  /* Text */
  --text-primary: #f8f8f6;
  --text-secondary: #cfcfc9;
  --text-muted: #8a8d93;

  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;

  /* Spacing */
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 110px;

  /* Layout */
  --max-width: 1320px;
  --border-radius: 12px;
  --border-radius-btn: 16px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--deep-charcoal);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--champagne-glow);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 300;
}

.text-gold {
  color: var(--liquid-gold);
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

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

section {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) { section { padding: var(--space-2xl) 0; } }
@media (min-width: 1024px) { section { padding: var(--space-3xl) 0; } }

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(15, 17, 21, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--liquid-gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-emblem {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--liquid-gold), var(--soft-bronze));
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L2 22h20L12 2zm0 6l5 10H7l5-10z"/></svg>') no-repeat center / contain;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L2 22h20L12 2zm0 6l5 10H7l5-10z"/></svg>') no-repeat center / contain;
}

.nav-links {
  display: none;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--liquid-gold);
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--liquid-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--warm-stone);
  z-index: 1001;
  padding: var(--space-3xl) var(--space-xl);
  transition: var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-menu {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--champagne-glow);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--liquid-gold) 0%, var(--soft-bronze) 100%);
  color: var(--deep-charcoal);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #e6c555 0%, #cba766 100%);
}

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

.btn-outline:hover {
  background: var(--surface-glass-hover);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-out forwards;
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(to right, var(--champagne-glow), var(--soft-bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 60vh;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media (min-width: 1024px) {
  .hero-visual {
    height: 80vh;
  }
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowPan 20s linear infinite alternate;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--deep-charcoal) 0%, transparent 100%);
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .hero-visual::after {
    background: linear-gradient(to right, var(--deep-charcoal) 0%, transparent 30%);
  }
}

/* Page Headers (Inner Pages) */
.page-header {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.7);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Sections & Grids */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }

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

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

/* Cards */
.card {
  background: var(--warm-stone);
  border: 1px solid var(--surface-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--liquid-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-sm);
}

.card-link:hover {
  color: var(--champagne-glow);
  gap: 12px;
}

/* Split Section (Image/Text) */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
  .split-reverse {
    direction: rtl;
  }
  .split-reverse > * {
    direction: ltr;
  }
}

.split-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.split-img::before {
  content: '';
  display: block;
  padding-bottom: 120%;
}

@media (min-width: 1024px) {
  .split-img::before { padding-bottom: 80%; }
}

.split-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--warm-stone);
  padding: var(--space-3xl) 0 var(--space-md) 0;
  border-top: 1px solid var(--surface-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-brand p {
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-serif);
  color: var(--champagne-glow);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

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

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

.footer-links a:hover {
  color: var(--liquid-gold);
}

.footer-bottom {
  border-top: 1px solid var(--surface-glass);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

.legal-links {
  display: flex;
  gap: var(--space-md);
}

.legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-links a:hover {
  color: var(--liquid-gold);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-control {
  width: 100%;
  background: var(--deep-charcoal);
  border: 1px solid var(--surface-glass);
  padding: 16px;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--liquid-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

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

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowPan {
  from { object-position: 0% 50%; }
  to { object-position: 100% 50%; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Utils */
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.text-center { text-align: center; }

/* Responsible Gaming Banner */
.rg-banner {
  background: var(--warm-stone);
  border: 1px solid var(--surface-glass);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: var(--space-2xl);
}

.rg-icon {
  font-size: 2rem;
  color: var(--liquid-gold);
  margin-bottom: var(--space-sm);
}