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

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

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

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

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

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

h3 {
  font-size: 1.875rem;
  letter-spacing: 1px;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0.75px;
}

h5 {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

h6 {
  font-size: 1rem;
  letter-spacing: 0.25px;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #d9d9d9;
}

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

a:hover {
  color: #e8c84a;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* SVG Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #d4af37;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.casino-icon:hover {
  fill: #e8c84a;
  transform: scale(1.1);
}

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

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

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

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

.brand-tagline {
  font-size: 0.75rem;
  color: #a08860;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
}

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

.nav a {
  font-size: 1rem;
  font-weight: 600;
  color: #f0f0f0;
  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;
  text-shadow: none;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

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

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

.hero h1 {
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #d9d9d9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.125rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #d4af37;
  color: #0f0f0f;
  border: 2px solid #d4af37;
  border-radius: 4px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0.5rem;
}

.cta-button:hover {
  background-color: transparent;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  text-shadow: none;
}

.cta-button-secondary {
  background-color: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.cta-button-secondary:hover {
  background-color: #d4af37;
  color: #0f0f0f;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

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

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

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

.section-subtitle {
  color: #a08860;
  font-size: 1.125rem;
  font-weight: 300;
}

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

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

.card h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

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

.card-small {
  background-color: #252525;
  border-left: 4px solid #d4af37;
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.card-small:hover {
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
  transform: translateX(4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  fill: #d4af37;
  margin-bottom: 1rem;
}

/* Blog & Article Lists */
.blog-list {
  list-style: none;
}

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

.article:hover {
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.article-date {
  color: #a08860;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article h3 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article-excerpt {
  color: #b3b3b3;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-link {
  align-self: flex
