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

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

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

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

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

h4 {
  font-size: 1.375rem;
  letter-spacing: 0.5px;
}

h5 {
  font-size: 1.125rem;
  letter-spacing: 0.4px;
}

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

p {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

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

a:hover {
  color: #1a1a2e;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #a98c2c;
  color: #f8f6f1;
}

.btn-primary:hover {
  background-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(169, 140, 44, 0.2);
}

.btn-secondary {
  background-color: #16213e;
  color: #f8f6f1;
}

.btn-secondary:hover {
  background-color: #a98c2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(22, 33, 62, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #a98c2c;
  border: 2px solid #a98c2c;
}

.btn-outline:hover {
  background-color: #a98c2c;
  color: #f8f6f1;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  background-color: #1a1a2e;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo h1 {
  color: #a98c2c;
  font-size: 1.75rem;
  margin: 0;
  letter-spacing: 1px;
}

.tagline {
  display: none;
  color: #a98c2c;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #f8f6f1;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(169, 140, 44, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(169, 140, 44, 0.03);
  border-radius: 50%;
  z-index: 1;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #e0ddd8;
  line-height: 1.8;
}

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

/* ============================================
   SECTIONS
   ============================================ */

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

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

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

/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: #fff;
  border-radius: 8px;
  border-top: 4px solid #a98c2c;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: #666;
}

.card-content {
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e0d8;
}

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

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

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   BLOG LIST & ARTICLES
   ============================================ */

.blog-list {
  list-style: none;
  padding: 0;
}

.blog-item {
  background-color: #fff;
  border-left: 4px solid #a98c2c;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.blog-item:hover {
  box-shadow: 0 8px 20px rgba(169, 140, 44, 0.12);
  transform: translateX(4px);
}

.blog-meta
