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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #0f0f0f;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 16px;
}

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

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

h2 {
  font-size: 2.25rem;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #e8e8e8;
  font-size: 1rem;
}

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

a:hover {
  color: #e6c547;
}

/* Header & Navigation */
.header {
  background-color: #2d2d2d;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.header-brand h1 {
  font-size: 1.75rem;
  margin: 0;
  color: #d4af37;
  letter-spacing: 2px;
}

.header-tagline {
  font-size: 0.75rem;
  color: #b8956a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

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

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #5f5f5f 0%, #2d2d2d 50%, #0f0f0f 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #d4af37;
  color: #0f0f0f;
  border: 2px solid #d4af37;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn:hover {
  background-color: transparent;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: #5f5f5f;
  border-color: #5f5f5f;
  color: #e8e8e8;
}

.btn-secondary:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #0f0f0f;
}

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

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

.section.light-bg {
  background-color: #1a1a1a;
}

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

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 3rem 0;
}

/* Cards */
.card {
  background-color: #1a1a1a;
  border-top: 4px solid #d4af37;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.card h3 {
  color: #d4af37;
  margin-top: 0;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: block;
}

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

/* Blog List & Articles */
.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.article:hover {
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.1);
}

.article-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #2d2d2d;
  padding-bottom: 1rem;
}

.article-title {
  color: #d4af37;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.875rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-content {
  color: #e8e8e8;
  line-height: 1.8;
}

.article-content h4 {
  color: #d4af37;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: #e8e8e8;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: #d4af37;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 0.5rem;
}

.read-more::after {
  content: ' →';
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(4
