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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background-color: #f5f5f5;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #1a1a2e;
}

/* Header & Navigation */
.header {
  background-color: #1a1a2e;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  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;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
}

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

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

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

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

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

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.hero h1 {
  color: #f5f5f5;
  margin-bottom: 16px;
}

.hero p {
  color: #f5f5f5;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  color: #a98b2c;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #a98b2c;
  color: #1a1a2e;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #1a1a2e;
  color: #a98b2c;
  box-shadow: 0 8px 20px rgba(169, 139, 44, 0.3);
  transform: translateY(-2px);
}

.cta-button-secondary {
  background-color: transparent;
  color: #a98b2c;
  border: 2px solid #a98b2c;
  padding: 12px 30px;
  margin-left: 12px;
}

.cta-button-secondary:hover {
  background-color: #a98b2c;
  color: #1a1a2e;
}

/* Section Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #1a1a2e, #a98b2c, #1a1a2e);
  margin: 60px 0;
}

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

/* Section */
.section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #a98b2c;
}

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

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

.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;
}

.card-header .casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: #a98b2c;
}

.card-title {
  margin: 0;
  font-size: 1.3rem;
  color: #1a1a2e;
}

.card-body {
  padding: 24px;
}

.card-body p {
  color: #1a1a2e;
  margin-bottom: 12px;
}

.card-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.card-link {
  color: #a98b2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 8px;
}

.card-link::after {
  content: '→';
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

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

.blog-list li {
  margin-bottom: 30px;
}

.article {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 4px;
  border-left: 4px solid #a98b2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.article-header {
  margin-bottom: 16px;
}

.article-title {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
}

.article-meta {
  font-size: 0.9rem;
  color: #666;
}

.article-excerpt {
  margin-bottom: 16px;
  color: #1a1a2e;
}

.article-tag {
  display: inline-block;
  background-color: #f0f0f0;
  color: #1a1a2e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
}

.article-tag.accent {
  background-color: #a98b2c;
  color: #ffffff;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  color: #1a1a2e;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #a98b2c;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Statistics */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  border-top: 4px solid #a98b2c;
  box-shadow: 0 2px
