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

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f7f4;
  color: #2c2c2c;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  color: #1a3a52;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #1a3a52;
}

/* Header & Navigation */
.header {
  background-color: #1a3a52;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(26, 58, 82, 0.15);
}

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

.logo {
  font-family: 'Crimson Text', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #aa8c2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.75rem;
  color: #aa8c2c;
}

.brand-tagline {
  font-size: 0.65rem;
  color: #f8f7f4;
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

.nav li {
  margin: 0;
}

.nav a {
  display: block;
  padding: 1rem 1.25rem;
  color: #f8f7f4;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  position: relative;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #aa8c2c;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

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

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.hero p {
  font-size: 1.25rem;
  color: #e8e7e4;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
  background-color: #aa8c2c;
  color: #f8f7f4;
  box-shadow: 0 4px 12px rgba(170, 140, 44, 0.25);
}

.btn-primary:hover {
  background-color: #8a6e1f;
  box-shadow: 0 6px 16px rgba(170, 140, 44, 0.35);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #f8f7f4;
  box-shadow: 0 4px 12px rgba(170, 140, 44, 0.25);
}

.btn-dark {
  background-color: #1a3a52;
  color: #f8f7f4;
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.25);
}

.btn-dark:hover {
  background-color: #0f1f2e;
  box-shadow: 0 6px 16px rgba(26, 58, 82, 0.35);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

/* Sections */
.section {
  padding: 4rem 1.5rem;
  position: relative;
}

.section:nth-child(odd) {
  background-color: #f8f7f4;
}

.section:nth-child(even) {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #aa8c2c 50%, transparent 100%);
  margin: 0 auto 2rem;
  max-width: 100px;
  border-radius: 2px;
}

.section-description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Card Layouts */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a3a52 0%, #0f1f2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.card h3 {
  margin-bottom: 0.75rem;
  color: #1a3a52;
}

.card p {
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin
