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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #ab8e2c;
  --background: #f8f9fa;
  --text: #2c3e50;
  --light-text: #5a6c7d;
  --border: #e0e6ed;
  --success: #27ae60;
  --warning: #f39c12;
  --danger: #e74c3c;
}

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1em;
  color: var(--text);
}

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

a:hover {
  color: #d4a844;
}

button, .btn {
  font-family: 'Inter', sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: #d4a844;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(171, 142, 44, 0.3);
}

.btn-secondary {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary);
}

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

.header {
  background-color: var(--primary);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.tagline {
  display: none;
  font-size: 0.7rem;
  color: #999;
  font-weight: 400;
  margin-left: 8px;
}

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

.nav li {
  position: relative;
}

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

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

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

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

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
  color: #fff;
  padding: 80px 20px;
  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(171, 142, 44, 0.1) 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;
  fill: var(--accent);
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero .tagline-text {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section:first-of-type::before {
  display: none;
}

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

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

.section-title p {
  color: var(--light-text);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  background: #fff;
  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 var(--accent);
  display: flex;
  flex-direction: column;
}

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

.card-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.card-header .casino-icon {
  fill: var(--accent);
}

.card-title {
  margin: 0;
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

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

.card-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #d4a844;
  margin-right: -4px;
}

.card-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

.article {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

.article-title {
  margin-bottom: 0.5rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--light-text);
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
}

.article-content {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top:
