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

:root {
  --base-color: #C9A84C;
  --bg-light: #FFFFFF;
  --bg-subtle: #F9F7F4;
  --text-dark: #0A0A0A;
  --text-light: #666666;
  --border-color: #E8E8E8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 2rem 0 1rem 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 8vw, 7.5rem);
  line-height: 1.1;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 3rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

h2:first-of-type {
  margin-top: 0;
}

.subheading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.label {
  font-family: 'Helvetica Now Display', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--base-color);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

a {
  color: var(--base-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #a8844a;
}

/* Layout Grid */
.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-full {
  grid-column: 1 / -1;
}

.grid-8 {
  grid-column: 1 / span 8;
}

.grid-4 {
  grid-column: 9 / span 4;
}

.grid-6 {
  grid-column: span 6;
}

.grid-4-3col {
  grid-column: span 4;
}

/* Header Navigation */
header {
  background: white;
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--base-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-light) 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  color: white;
  max-width: 70%;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero .subheading {
  color: #ddd;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--base-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.cta-button:hover {
  background: #a8844a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(201, 168, 76, 0.3);
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid var(--base-color);
  color: var(--base-color);
}

.cta-button-secondary:hover {
  background: var(--base-color);
  color: white;
}

/* Section Alternation */
section {
  margin-bottom: 4rem;
}

section:nth-child(odd) .container {
  background: var(--bg-light);
}

section:nth-child(even) .container {
  background: var(--bg-subtle);
}

/* Casino Cards */
.casino-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.casino-card:hover {
  box-shadow: 0 12px 24px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.casino-logo {
  width: 100px;
  height: 100px;
  background: var(--bg-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.casino-info {
  flex: 1;
}

.casino-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.casino-rating {
  color: var(--base-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.casino-bonus {
  background: var(--bg-subtle);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  font-weight: 600;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
}

th {
  background: var(--base-color);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

tr:hover {
  background: var(--bg-subtle);
}

/* Bonus Calculator */
.calculator {
  background: var(--bg-subtle);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.calculator-input {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.calculator-input input {
  flex: 1;
  min-width: 150px;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.calculator-result {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  border-left: 4px solid var(--base-color);
}

.calculator-result-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--base-color);
  margin: 0.5rem 0;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--base-color);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 999;
  display: none;
}

.sticky-cta.active {
  display: block;
}

/* Social Proof */
.social-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: var(--bg-subtle);
  border-radius: 8px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--base-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* FAQ */
.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  color: var(--base-color);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-light);
}

.faq-answer.active {
  display: block;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background: #0A0A0A;
  color: #ccc;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-top: 0;
}

.footer-section a {
  color: #888;
  font-weight: 400;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.9rem;
}

.disclaimer {
  background: var(--bg-subtle);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .container {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .grid-8 {
    grid-column: 1 / -1;
  }

  .grid-4 {
    grid-column: 1 / -1;
  }

  .grid-6 {
    grid-column: span 6;
  }

  h1 {
    font-size: clamp(1.5rem, 6vw, 3rem);
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .casino-card {
    flex-direction: column;
  }

  nav {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  .container {
    gap: 1rem;
    padding: 0 1rem;
  }

  .grid-6 {
    grid-column: 1 / -1;
  }

  .grid-4-3col {
    grid-column: 1 / -1;
  }

  .social-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero {
    height: 400px;
  }

  .hero-content {
    padding: 2rem;
  }

  .calculator-input {
    flex-direction: column;
  }

  .calculator-input input {
    min-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  table {
    font-size: 0.9rem;
  }

  td, th {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  header {
    padding: 1rem;
  }

  .hero {
    height: 300px;
  }

  .casino-logo {
    width: 80px;
    height: 80px;
  }

  .stat-box {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .calculator {
    padding: 1rem;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print */
@media print {
  header, footer, .sticky-cta, .cta-button {
    display: none;
  }
}
