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

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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #2c3e50;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.header {
  background-color: #2c3e50;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.65rem;
  color: #bdc3c7;
  display: block;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav a {
  color: #ecf0f1;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: block;
}

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

.nav li {
  position: relative;
}

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

.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 5rem 0;
  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%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ecf0f1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ab8e2c;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

.cta-button:hover {
  background-color: #2c3e50;
  color: #ab8e2c;
  box-shadow: 0 6px 16px rgba(171, 142, 44, 0.4);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: transparent;
  color: #ab8e2c;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #ab8e2c;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-button:hover {
  background-color: #ab8e2c;
  color: #2c3e50;
}

.section {
  padding: 4rem 0;
  position: relative;
}

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

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ab8e2c;
  margin: 1rem auto 0;
}

.card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 4px solid #ab8e2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

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

.card h3 {
  color: #2c3e50;
  margin-top: 1rem;
}

.card p {
  color: #34495e;
  line-height: 1.8;
}

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

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.article-header {
  padding: 2rem 2rem 1rem;
}

.article h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.875rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
}

.article-excerpt {
  padding: 0 2rem;
  color: #34495e;
  flex-grow: 1;
}

.article-footer {
  padding: 1rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ecf0f1;
}

.read-more {
  color: #ab8e2c;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  color: #2c3e50;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  border-top: 4px solid #ab8e2c;
}

.stat-number {
  font-family: 'Crimson Text', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ab8e2c;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.features-grid {
  display: grid;
