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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f5f5f5;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #e8c547;
}

/* Header and Navigation */
.header {
  background-color: #2d2d2d;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

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

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
}

.brand-tagline {
  display: none;
  font-size: 0.75rem;
  color: #b8860b;
  letter-spacing: 1px;
}

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

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

.nav a {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  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: #d4af37;
  color: #d4af37;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(95, 95, 95, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.cta-primary {
  display: inline-block;
  background-color: #d4af37;
  color: #0f0f0f;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: #d4af37;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 1rem;
}

.cta-secondary:hover {
  background-color: #d4af37;
  color: #0f0f0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

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

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

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

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
  margin: 1rem auto 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #2d2d2d 0%, #d4af37 50%, #2d2d2d 100%);
  margin: 3rem 0;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #2d2d2d;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid #d4af37;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.2);
}

.card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-image .casino-icon {
  width: 64px;
  height: 64px;
  opacity: 0.8;
}

.card-content {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.card p {
  font-size: 0.95rem;
  color: #c0c0c0;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-block;
  color: #d4af37;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.card-link:hover {
  border-bottom-color: #d4af37;
}

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

.article {
  padding: 2rem;
  border-left: 4px solid #d4af37;
  background-color: #2d2d2d;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.15);
  transform: translateX(4px);
}

.article h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.article-meta {
  color: #b0b0b0;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.article p {
  color: #d0d0d0;
  margin-bottom: 1rem;
}

.article-
