* {
  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: #f8f7f5;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #2c1810;
}

button, .btn {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #aa8c2c;
  color: #f8f7f5;
}

.btn-primary:hover {
  background-color: #2c1810;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(42, 24, 16, 0.25);
}

.btn-secondary {
  background-color: #2c1810;
  color: #f8f7f5;
}

.btn-secondary:hover {
  background-color: #aa8c2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(170, 140, 44, 0.25);
}

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

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

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

.header {
  background-color: #2c1810;
  color: #f8f7f5;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(42, 24, 16, 0.15);
}

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

.brand {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
}

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

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

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

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

.hero {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #2c1810 100%);
  color: #f8f7f5;
  padding: 4rem 1rem;
  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(170, 140, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e8e7e5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

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

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

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

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

.card h3 {
  color: #2c1810;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

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

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.article {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  border-top: 4px solid #aa8c2c;
  box-shadow: 0 2px 6px rgba(42, 24, 16, 0.08);
  transition: all 0.3s ease;
}

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

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2c1810 0%, #aa8c2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.article-content {
  padding: 1.5rem;
}

.article-content h3 {
  margin-bottom: 0.75rem;
}

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

.article-excerpt {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.article-link:hover {
  gap: 0.75rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #aa8c2c 50%, transparent 100%);
  margin: 3rem 0;
}

.footer {
  background-color: #2c1810;
  color: #f8f7f5;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
  border-top: 3px solid #aa8c2c;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #aa8c2c;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #e8e7e5;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #aa8c2c;
}

.footer-bottom {
  border-top: 1px solid rgba(170, 140,
