/* ===== CSS Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2d2d2d;
  background-color: #f8f7f3;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 0.8px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 0.6px;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #1a1a2e;
}

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

/* ===== Icon Styles ===== */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #aa8c2c;
  transition: fill 0.3s ease;
}

.casino-icon:hover {
  fill: #1a1a2e;
}

/* ===== Button Styles ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #aa8c2c;
  background-color: #aa8c2c;
  color: #f8f7f3;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #f8f7f3;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.125rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ===== Container & Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.col {
  flex: 1 1 100%;
  padding: 10px;
}

.col-2 {
  flex: 1 1 calc(50% - 20px);
}

.col-3 {
  flex: 1 1 calc(33.333% - 20px);
}

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

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
}

.tagline {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.75rem;
  color: #aa8c2c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav li {
  position: relative;
}

.nav a {
  display: block;
  padding: 12px 20px;
  color: #f8f7f3;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

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

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d2d2d 100%);
  color: #f8f7f3;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #e8e8e8;
  font-weight: 300;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  fill: #aa8c2c;
}

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

/* ===== Section & Content ===== */
.section {
  padding: 60px 20px;
  position: relative;
}

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

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #aa8c2c 50%, transparent 100%);
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #f8f7f3;
}

.dark-section p {
  color: #e8e8e8;
}

/* ===== Card Styles ===== */
.card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px 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 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-header {
  padding: 20px;
  background-color: #f8f7f3;
  border-bottom: 1px solid #e8e8e8;
}

.card-body {
  padding: 20px;
  flex: 1;
}

.card-body h3 {
  margin-top: 0;
}

.card-footer {
  padding: 15px 20px;
  background-color: #f8f7f3;
  border-top: 1px solid #e8e8e8;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ===== Feature Cards ===== */
.feature-card {
  text-align: center;
  padding: 30px;
}

.feature-card .casino-icon {
  width: 56px;
  height: 56
