* {
  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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #1a1a2e;
}

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

a:hover {
  color: #0f3460;
}

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

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

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

.btn-secondary {
  background-color: #0f3460;
  color: #f8f9fa;
}

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

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

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

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

.casino-icon.secondary {
  fill: #0f3460;
}

/* Header Styles */
.header {
  background-color: #1a1a2e;
  padding: 16px 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 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo .casino-icon {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}

.header-tagline {
  font-size: 12px;
  color: #ab8e2c;
  font-style: italic;
  display: none;
}

/* Navigation */
.nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav li a {
  color: #f8f9fa;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

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

.mobile-menu-toggle {
  display: none;
  background-color: transparent;
  color: #ab8e2c;
  font-size: 24px;
  padding: 8px;
}

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

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  fill: #ab8e2c;
}

.hero h1 {
  color: #f8f9fa;
  margin-bottom: 24px;
}

.hero p {
  color: #f0f0f0;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

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

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
}

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

.card-header {
  padding: 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-header .casino-icon {
  width: 48px;
  height: 48px;
}

.card-header-text h3 {
  margin-bottom: 4px;
}

.card-header-text p {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

.card-body {
  padding: 24px;
}

.card-body p {
  margin-bottom: 12px;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.card-footer {
  padding: 16px 24px;
  background-color: #f8f9fa;
  border-top: 1px solid #f0f0f0;
  text-align: right;
}

.card-footer a {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.card-footer a:hover {
  border-bottom-color: #ab8e2c;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

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

/* Blog List */
.blog-list {
  list-style: none;
}

.blog-item {
  padding: 28px;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 8px;
  border-left: 4px solid #ab8e2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateX(4px);
}

.blog-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-item h3 {
  margin: 0;
  color: #1a1a2e;
}

.blog-date {
  background-color: #0f3460;
  color: #f8f9fa;
  padding: 6px 12px;
