@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background-color: #F8F6F3;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  color: #2C1810;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

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

/* Header and Navigation */
.header {
  background-color: #2C1810;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.brand-logo {
  width: 40px;
  height: 40px;
  background-color: #a98c2c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #F8F6F3;
  font-size: 1.2rem;
}

.brand-text {
  color: #F8F6F3;
}

.brand-name {
  font-family: 'Crimson Text', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #a98c2c;
  margin-top: 0.2rem;
}

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

.nav-link {
  color: #F8F6F3;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-link:hover {
  border-bottom-color: #a98c2c;
}

.nav-link.active {
  border-bottom-color: #a98c2c;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #F8F6F3;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
  color: #F8F6F3;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #a98c2c;
}

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

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

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

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

.btn-primary {
  background-color: #a98c2c;
  color: #F8F6F3;
  box-shadow: 0 4px 12px rgba(169, 140, 44, 0.3);
}

.btn-primary:hover {
  background-color: #8a6f22;
  box-shadow: 0 6px 16px rgba(169, 140, 44, 0.4);
  transform: translateY(-2px);
}

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

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

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

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

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

.section:nth-child(odd) {
  background-color: #FDFBF8;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #2C1810 0%, #a98c2c 50%, #1A0F0A 100%);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: #a98c2c;
  margin-bottom: 1rem;
}

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

.card-header h3 {
  margin-bottom: 1rem;
  color: #2C1810;
}

.card-header p {
  color: #555;
  font-size: 0.95rem;
}

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

.card-link {
  color: #a98c2c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.card-link:hover {
  color: #8a6f22;
}

.card-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.card-link:hover::after {
  margin-left: 1rem;
}

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

.article {
  background-color: #F8F6F3;
  border-left: 4px solid #a98c2c;
  padding: 2rem;
  border-radius: 4px;
  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);
  transform: translateX(4px);
}

.article-header {
  margin-bottom: 1rem;
}

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

.article h3 {
  margin-bottom
