/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a2e;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

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

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a2e;
}

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

a:hover {
  color: #1a1a2e;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-primary:hover {
  background-color: #16213e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(22, 33, 62, 0.2);
}

.btn-secondary {
  background-color: #16213e;
  color: #f8f9fa;
}

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

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

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

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

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

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

.header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.logo-accent {
  color: #ab8e2c;
}

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

.nav a {
  color: #1a1a2e;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ab8e2c;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

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

/* ============================================================================
   ICONS
   ============================================================================ */

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

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

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f8f9fa;
  padding: 6rem 2rem;
  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 top right, rgba(171, 142, 44, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero .tagline {
  font-size: 1.25rem;
  color: #ab8e2c;
  font-weight: 500;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
}

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

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

/* ============================================================================
   SECTIONS & DIVIDERS
   ============================================================================ */

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
  margin: 2rem 0;
}

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

.section-title h2 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
}

/* ============================================================================
   CARDS
   ============================================================================ */

.card {
  background-color: #fff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  position: relative;
  overflow: hidden;
}

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

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.card p {
  color: #555;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
  color: #ab8e2c;
  margin-bottom: 1rem;
  display: block;
}

.card-content {
  position: relative;
  z-index: 1;
}

.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 GRID
   ============================================================================ */

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

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ============================================================================
   BLOG LIST & ARTICLES
   ============================================================================ */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #ab8e2c;
}

.article:hover {
  box-shadow: 0 12px 24px rgba(26, 26, 46, 0.15);
  transform: translateY(-2px);
}

.article-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #16213e, #1a1a2e);
  object-fit: cover;
}

.article-
