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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #a98b2c;
  --background: #f5f5f5;
  --text: #1a1a1a;
  --light-gray: #e8e8e8;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #8b6f1f;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

.header {
  background-color: white;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}

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

.logo {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .casino-icon {
  width: 48px;
  height: 48px;
}

.tagline {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.25rem;
  font-style: italic;
}

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

.nav a {
  color: var(--text);
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

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

.hero-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1rem;
  filter: brightness(1.2);
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: inline-block;
}

.btn:hover {
  background-color: #8b6f1f;
  border-color: #8b6f1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary);
  border-color: white;
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

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

.section {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  margin: 2rem 0;
}

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

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

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

/* ============================================================================
   CARD LAYOUTS
   ============================================================================ */

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

.card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  display: block;
  height: 4px;
  background-color: var(--accent);
}

.card:hover {
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-4px);
}

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

.card-header .casino-icon {
  width: 48px;
  height: 48px;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: #666;
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: var(--background);
  border-top: 1px solid var(--light-gray);
  margin-top: auto;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* ============================================================================
   FEATURE SECTION
   ============================================================================ */

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

.feature {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.feature p {
  color: #666;
  font-size: 0.95rem;
}

/* ============================================================================
   BLOG LIST
   ============================================================================ */

.blog-list {
  list-style: none;
}

.blog-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-item:hover {
  padding-left: 1rem;
  background-color: rgba(169, 139, 44, 0.02);
}

.article-date {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

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

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #999;
}

.read-more {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.read-more:hover {
  gap: 0.75rem;
  color: #8b6f1f;
}

/* ============================================================================
   ARTICLE PAGE
   ============================================================================ */

.article-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
}

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

.article-meta-info {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0
