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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a2e;
  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;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

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

h2 {
  font-size: 2rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1.125rem;
  color: #1a1a2e;
}

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

a:hover {
  color: #1a1a2e;
}

/* Header & Navigation */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo-accent {
  color: #ab8e2c;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 2.75rem;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
  background-color: #ab8e2c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

.btn-primary:hover {
  background-color: #9a7c1f;
  box-shadow: 0 6px 16px rgba(171, 142, 44, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #1a1a2e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

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

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

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

/* Section Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ab8e2c 20%, #ab8e2c 80%, transparent);
  margin: 3rem 0;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-alt {
  background-color: #ffffff;
}

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

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
}

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2rem;
  border-top: 4px solid #ab8e2c;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card .btn {
  align-self: flex-start;
}

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

.card .casino-icon {
  margin-bottom: 1rem;
  color: #ab8e2c;
}

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

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

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

.blog-item {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ab8e2c;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
  transition: all 0.3s ease;
}

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

.blog-item h3 {
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.blog-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: #ab8e2c;
  font-weight: 600;
  position: relative;
  padding-right: 1rem;
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: right 0.3s ease;
}

.blog-item:hover .read-more {
  padding-right: 0;
}

.blog-item:hover .read-more::after {
  right: -0.75rem;
}

/* Article */
.article {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
}

.article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.article-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
