@font-face {
  font-family: 'Playfair Display';
  src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&display=swap') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap') format('woff2');
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f7f2;
  color: #2c2c2c;
  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;
  color: #1a1a2e;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

h5 {
  font-size: 1.25rem;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

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

a:hover {
  color: #1a1a2e;
}

button, .btn {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  background-color: #aa8c2c;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  user-select: none;
}

button:hover, .btn:hover {
  background-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.2);
}

button:active, .btn:active {
  transform: translateY(0);
}

button.secondary, .btn.secondary {
  background-color: transparent;
  color: #aa8c2c;
  border: 2px solid #aa8c2c;
}

button.secondary:hover, .btn.secondary:hover {
  background-color: #aa8c2c;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: currentColor;
}

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

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #aa8c2c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo:hover {
  color: #f8f7f2;
}

.tagline {
  font-size: 0.75rem;
  font-family: 'Source Sans Pro', sans-serif;
  color: #aa8c2c;
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav li a {
  color: #f8f7f2;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

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

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

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #f8f7f2;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #f8f7f2;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero p {
  color: #e0d9d0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #aa8c2c;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #d4cfc6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  padding: 60px 20px;
  position: relative;
}

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

.section.dark {
  background-color: #16213e;
  color: #f8f7f2;
}

.section.dark h2,
.section.dark h3,
.section.dark h4,
.section.dark h5,
.section.dark h6 {
  color: #f8f7f2;
}

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

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

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

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.section.dark .section-subtitle {
  color: #d4cfc6;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.section.dark .card {
  background-color: #16213e;
  color: #f8f7f2;
  border-top-color: #aa8c2c;
}

.card-header {
  padding: 20px;
  background-color: #f8f7f2;
  border-bottom: 1px solid #e0d9d0;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 80px;
}

.section.dark .card-header {
  background-color: #1a1a2e;
  border-bottom-color: #2c2c2c;
}

.card-header .casino-icon {
  color: #aa8c2c;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content p {
  color: #666;
  margin-bottom: 1rem;
}

.section.dark .card-content p {
  color: #d4cfc6;
}

.card-footer {
  padding: 20px;
  border-top: 1px solid #e0d9d0;
  background-color: #f8f7f2;
  text-align: center;
}

.section.dark .card-footer {
  background-color: #1a1a2e;
  border-top-color: #2c2c2c;
}

.card-title {
