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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #ab8e2c;
  --background: #f8f9fa;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --border: #e0e6ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--primary);
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
}

/* Header & Navigation */
.header {
  background-color: var(--primary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

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

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

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 5rem 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 top right, rgba(171, 142, 44, 0.1), transparent),
              radial-gradient(circle at bottom left, rgba(171, 142, 44, 0.05), transparent);
  pointer-events: none;
}

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

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

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-icon {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.cta-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem 0.5rem;
}

.cta-primary:hover {
  background-color: transparent;
  color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent) inset;
}

.cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--accent);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem 0.5rem;
}

.cta-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
}

/* Section Divider */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  margin: 3rem 0;
}

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

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

.section-title h2 {
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

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

.card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 2rem 1.5rem;
  color: white;
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.card-header h3 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-body h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* Blog List */
.blog-list {
  list-style: none;
}

.article {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.article:last-child {
  border-bottom: none;
}

.article:hover {
  padding-left: 1rem;
}

.article-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.article-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: rgba(171, 142, 44, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light
