* {
  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: #2c2416;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

a:hover {
  color: #2c2416;
}

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

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

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

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #aa8c2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-style: italic;
  margin-top: 0.25rem;
}

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

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

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

.hero {
  background: linear-gradient(135deg, #2c2416 0%, #1a1410 100%);
  color: #f8f7f5;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 20% 50%, rgba(170, 140, 44, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero p {
  color: #f8f7f5;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  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;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #aa8c2c;
  color: #1a1410;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid #aa8c2c;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #1a1410;
  color: #aa8c2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(170, 140, 44, 0.3);
}

.cta-button-secondary {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: #aa8c2c;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid #aa8c2c;
  cursor: pointer;
}

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

.section {
  padding: 60px 20px;
  position: relative;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #2c2416 0%, #aa8c2c 50%, #2c2416 100%);
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

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

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

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #aa8c2c;
  border-radius: 2px;
}

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

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

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

.card-header {
  padding: 2rem;
  background-color: #f8f7f5;
  border-bottom: 1px solid #e8e5e0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.card-title {
  margin: 0;
  font-size: 1.25rem;
  flex: 1;
}

.card-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.card-footer {
  padding: 1.5rem 2rem;
  background-color: #f0ede8;
  border-top: 1px solid #e8e5e0;
}

.card-body p {
  color: #2c2416;
  margin-bottom: 1rem;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.card a {
  color: #aa8c2c;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #2c2416;
}

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

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

.article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(44, 36, 22, 0.15);
}

.article-header {
  padding: 2rem;
  background: linear-gradient(135deg, #2c2416 0%, #1a1410 100%);
  color: #f8f7f5;
}

.article-date {
  font-size: 0.875rem;
  color: #aa8c2c;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.article-body {
  padding: 1.5rem 2rem;
  flex: 1;
}

.article-body p {
  color: #2c2416;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.article-footer {
  padding: 1.5rem 2rem;
  background-color: #f0ede8;
  border-top: 1px solid #e8e5e0;
}

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

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

.footer {
  background-color: #1a1410;
  color: #f8f7f5;
  padding: 3rem 20px 2rem;
  position: relative;
  border-top: 3px solid;
  border-image: linear
