@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Playfair Display'), local('PlayfairDisplay-Regular'),
       url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro'), local('SourceSansPro-Regular'),
       url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
}

* {
  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;
  color: #2c2c2c;
  background-color: #f8f7f5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0f0f0f;
  margin-bottom: 0.5em;
}

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

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

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5em;
  color: #2c2c2c;
}

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

a:hover {
  color: #0f0f0f;
}

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

.button-primary {
  background-color: #aa8c2c;
  color: #f8f7f5;
  box-shadow: 0 2px 8px rgba(170, 140, 44, 0.2);
}

.button-primary:hover {
  background-color: #8b6f22;
  box-shadow: 0 4px 16px rgba(170, 140, 44, 0.35);
  transform: translateY(-2px);
}

.button-secondary {
  background-color: #1a1a1a;
  color: #f8f7f5;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}

.button-secondary:hover {
  background-color: #0f0f0f;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.35);
  transform: translateY(-2px);
}

.button-outline {
  background-color: transparent;
  color: #aa8c2c;
  border: 2px solid #aa8c2c;
}

.button-outline:hover {
  background-color: #aa8c2c;
  color: #f8f7f5;
}

.header {
  background-color: #0f0f0f;
  color: #f8f7f5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #f8f7f5;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

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

.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #f8f7f5;
  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(170, 140, 44, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(170, 140, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #f8f7f5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  padding: 24px;
  background-color: #1a1a1a;
  color: #aa8c2c;
}

.card-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

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

.card-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: #0f0f0f;
}

.card-description {
  color: #666;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-link {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

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

.card-link::after {
  content: '→';
}

.blog-list {
  display: grid;
  gap: 2rem;
}

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

.article:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.article-meta {
  display: flex;
