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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f8f6f1;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #1a1a1a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Source Sans Pro", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
}

/* Header & Navigation */
.header {
  background-color: #1a1a1a;
  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 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98c2c;
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.65rem;
  color: #a98c2c;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.25rem;
}

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

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

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

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

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(169, 140, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.hero-icon {
  display: block;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #a98c2c;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #a98c2c;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background-color: transparent;
  color: #a98c2c;
}

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

.cta-button-secondary:hover {
  background-color: #a98c2c;
  color: #1a1a1a;
}

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

.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, #a98c2c, transparent);
}

.section.alt-bg {
  background-color: #2d2d2d;
  color: #f8f6f1;
}

.section.alt-bg h2 {
  color: #f8f6f1;
}

.section.alt-bg h3,
.section.alt-bg h4,
.section.alt-bg h5,
.section.alt-bg h6 {
  color: #f8f6f1;
}

.section.alt-bg p {
  color: #d9d4ce;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #a98c2c, transparent);
  margin: 4rem 0;
}

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

.card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #a98c2c;
}

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

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

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

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

.card-link {
  color: #a98c2c;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.card-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.card:hover .card-link::after {
  margin-left: 0.75rem;
}

.section.alt-bg .card {
  background: #1a1a1a;
  border-top-color: #a98c2c;
}

.section.alt-bg .card-title {
  color: #f8f6f1;
}

.section.alt-bg .card-description {
  color: #b8b3aa;
}

.section.alt-bg .card-meta {
  color: #999;
}

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

.article {
  padding: 2rem 0;
  border-bottom: 1px solid #e0dbd2;
  transition: all 0.3s ease;
}

.article:last-child {
  border-bottom: none;
}

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

.article-title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.article-title a {
  color: #1a1a1a;
  transition: color
