@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Playfair Display Regular'), local('PlayfairDisplay-Regular'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vgNJGbjGz8c88A8eIapTDd.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vgNJGbjGz8c88A8eIapTDd.woff2') format('woff2');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Lato Regular'), local('Lato-Regular'),
       url('https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxsAUC34.woff2') format('woff2');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Lato Bold'), local('Lato-Bold'),
       url('https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UeAC9r.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #1a1a2e;
  background-color: #f8f9fa;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: #ab8e2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a1a2e;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #1a1a2e 0%, #ab8e2c 50%, #1a1a2e 100%);
  margin: 3rem 0;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: #ab8e2c;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  stroke: #ab8e2c;
  stroke-width: 1.5;
  fill: none;
}

/* Header */
.header {
  background-color: #1a1a2e;
  color: #f8f9fa;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: #ab8e2c;
  display: block;
  margin-top: -0.25rem;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  color: #f8f9fa;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

.nav a.active {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f8f9fa;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(171, 142, 44, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(171, 142, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #ab8e2c;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  text-align: center;
}

.btn-primary {
  background-color: #ab8e2c;
  color: #1a1a2e;
  border-color: #ab8e2c;
}

.btn-primary:hover {
  background-color: #8a6f20;
  border-color: #8a6f20;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 142, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #ab8e2c;
  border-color: #ab8e2c;
}

.btn-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 142, 44, 0.3);
}

.btn-light {
  background-color: #f8f9fa;
  color: #1a1a2e;
  border-color: #f8f9fa;
}

.btn-light:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.btn-dark {
  background-color: #1a1a2e;
  color: #f8f9fa;
  border-color: #1a1a2e;
}

.btn-dark:hover {
  background-color: #16213e;
  border-color: #16213e;
}

/* Sections */
.section {
  padding: 3rem 1.5rem;
}

.section.light {
  background-color: #f8f9fa;
}

.section.dark {
  background-color: #1a1a2e;
  color: #f8f9fa;
}

.section.dark h2 {
  color: #ab8e2c;
}

.section.dark h3,
.section.dark h4 {
  color: #f8f9fa;
}

.section.dark p {
  color: #e0e0e0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width:
