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

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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f3;
  color: #2c2c2c;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

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

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

a:hover {
  color: #0f0f0f;
}

/* HEADER & NAVIGATION */
.header {
  background-color: #0f0f0f;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.75rem;
  color: #aa8c2c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.9;
}

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

.nav li {
  position: relative;
}

.nav a {
  color: #f8f7f3;
  font-size: 0.95rem;
  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: #aa8c2c;
  border-bottom-color: #aa8c2c;
}

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

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

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

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

.hero h1 {
  color: #f8f7f3;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #aa8c2c;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

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

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #aa8c2c;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
  background-color: #aa8c2c;
  color: #0f0f0f;
}

.btn-primary:hover {
  background-color: #8a6f22;
  border-color: #8a6f22;
  box-shadow: 0 8px 20px rgba(170, 140, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #aa8c2c;
  border-color: #aa8c2c;
}

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

/* MAIN CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.section.alternate {
  background-color: #1a1a1a;
  color: #f8f7f3;
}

.section.alternate h2,
.section.alternate h3,
.section.alternate h4 {
  color: #f8f7f3;
}

.section.alternate p {
  color: #e8e7e3;
}

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

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

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #aa8c2c;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.section.alternate .section-header p {
  color: #bbb;
}

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

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

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aa8c2c;
  font-size: 3rem;
}

.card-content {
  padding: 2rem;
}

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

.card-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e7e3;
  font-size: 0.85rem;
  color: #999;
}

.card a {
  display: inline-block;
  margin-top: 1rem;
  color: #aa8c2c;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card a:hover {
  color: #0f0f0f;
  margin-right: -4px;
}

.card a::after {
  content: ' →';
  transition: margin-left 0.3s ease;
}

.card a:hover::after {
  margin-left: 4px;
}

/* ARTICLE/BLOG LIST */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.article {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: 4px
