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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

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

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

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

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

a:hover {
  color: #8a6f22;
}

strong {
  font-weight: 600;
}

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

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

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ab8d2c;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #c9a93f;
}

.tagline {
  font-size: 0.75rem;
  color: #999;
  margin-left: 0.5rem;
  display: none;
}

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

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

.nav a:hover {
  color: #ab8d2c;
  border-bottom-color: #ab8d2c;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 20% 50%, rgba(171, 141, 44, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #f8f8f8;
  margin-bottom: 1rem;
}

.hero p {
  color: #d0d0d0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: #ab8d2c;
}

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

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

.btn-primary {
  background-color: #ab8d2c;
  color: #1a1a1a;
}

.btn-primary:hover {
  background-color: #c9a93f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(171, 141, 44, 0.3);
}

.btn-secondary {
  background-color: #2d2d2d;
  color: #f8f8f8;
  border: 2px solid #ab8d2c;
}

.btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ab8d2c;
}

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

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

/* Sections */
.section {
  padding: 4rem 1rem;
  background-color: #f8f8f8;
}

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

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a 0%, #ab8d2c 50%, #1a1a1a 100%);
  margin: 0;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ab8d2c;
}

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

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.card-cta {
  color: #ab8d2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

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

/* Grid Layouts */
.grid {
  display: grid;
  gap: 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 {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 4px;
  border-left: 4px solid #ab8d2c;
  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);
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.article-content h3 {
  margin-bottom: 0.5rem;
}

.article-excerpt {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

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

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

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: #ab8d2
