/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f5;
  color: #2c2c2c;
  line-height: 1.6;
  font-weight: 400;
}

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

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

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

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

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #2c2c2c;
  font-weight: 400;
}

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

a:hover {
  color: #2c1810;
}

/* Header and Navigation */
.header {
  background-color: #f8f7f5;
  padding: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(44, 24, 16, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c1810;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

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

.nav a {
  font-weight: 500;
  color: #2c1810;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #aa8c2c;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2c1810;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #2c1810 100%);
  color: #f8f7f5;
  padding: 4rem 1.5rem;
  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: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1.5rem;
}

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

.hero p {
  color: #f8f7f5;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-tagline {
  color: #aa8c2c;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

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

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

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #2c1810;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

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

/* Sections */
.section {
  padding: 4rem 1.5rem;
  position: relative;
}

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

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

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

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

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
}

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

.card-content {
  padding: 2rem;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.card-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.card-description {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.card-footer {
  padding: 0 2rem 2rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.article-date {
  font-size: 0.85rem;
  color: #aa8c2c;
  font-weight: 600;
  white-space: nowrap;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

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

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background-color: #f0ede8;
  color: #2c1810;
  padding:
