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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #ab8e2c;
  --background: #f8f9fa;
  --text: #1a1a2e;
  --light-gray: #e8e9eb;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

a {
  text-decoration: none;
  color: var(--accent);
  transition: var(--transition);
}

a:hover {
  color: #d4a844;
}

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

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

header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 20px;
  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%),
              radial-gradient(circle at 80% 80%, rgba(171, 142, 44, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero h1 {
  color: white;
  margin-bottom: 24px;
  font-size: 3rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(171, 142, 44, 0.3);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cta-button-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
}

section {
  padding: 80px 20px;
}

section.alternate {
  background-color: white;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 16px auto 0;
}

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

.card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
  border-top: 4px solid var(--accent);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-header {
  padding: 32px 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 80px;
}

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

.card-title {
  flex: 1;
}

.card-title h3 {
  font-size: 1.5rem;
  margin: 0;
}

.card-content {
  padding: 24px;
  flex: 1;
}

.card-content p {
  margin-bottom: 12px;
  color: #666;
  font-size: 0.95rem;
}

.card-footer {
  padding: 16px 24px 24px;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.article {
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
  transition: var(--transition);
}

.article:hover {
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
}

.article-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #999;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article h3 {
  color: var(--primary);
  margin: 0 0 12px 0;
  font-size: 1.5rem;
}

.article p {
  color: #666;
  margin-bottom: 16px;
}

.article-excerpt {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
}

.article-read-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.article-read-more:hover {
  color: #d4a844;
  margin-left: 4px;
}

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

.stat-box {
  text-align: center;
  padding: 32px 24px;
  background-color: white;
  border-radius: var(--border-radius);
  border-top: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.
