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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

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

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

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

a:hover {
  color: #2c3e50;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-right: 16px;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name {
  font-family: 'Crimson Text', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ab8e2c;
  margin: 0;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 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%);
  pointer-events: none;
}

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

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

.hero p {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.hero-icon-group .casino-icon {
  fill: #ab8e2c;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 0.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background-color: #ab8e2c;
  color: #f8f9fa;
}

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

.btn-secondary {
  background-color: #2c3e50;
  color: #f8f9fa;
}

.btn-secondary:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #ab8e2c;
  border: 2px solid #ab8e2c;
}

.btn-outline:hover {
  background-color: #ab8e2c;
  color: #f8f9fa;
}

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

/* Sections */
.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section.dark {
  background-color: #2c3e50;
  color: #f8f9fa;
}

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

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

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

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #2c3e50 0%, #ab8e2c 50%, #2c3e50 100%);
  margin: 0;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

.section.dark .section-header p {
  color: #bbb;
}

/* Cards */
.card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-header {
  padding: 2rem 1.5rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  fill: #ab8e2c;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: 'Crimson Text', serif;
  font-size: 1.35rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.card-text {
  color: #666;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin-top: auto;
}

.card-link {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

.card.dark {
  background-color: #1a252f;
  color: #e0e0e0;
}

.card.dark .card-title {
  color: #ab8e2c;
}

.card.dark .card-text {
  color: #bbb;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat
