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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a2e;
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

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

a:hover {
  color: #1a1a2e;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98b2c;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tagline {
  font-size: 0.75rem;
  color: #a98b2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f5f5f5;
  padding: 6rem 1.5rem;
  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(169, 139, 44, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

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

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

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

.hero p {
  color: #f5f5f5;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
  background-color: #a98b2c;
  color: #f5f5f5;
  border-color: #a98b2c;
}

.btn-primary:hover {
  background-color: #1a1a2e;
  border-color: #a98b2c;
  color: #a98b2c;
}

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

.btn-secondary:hover {
  background-color: #a98b2c;
  color: #f5f5f5;
}

.btn-block {
  width: 100%;
  display: block;
}

/* Section Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

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

.section-light {
  background-color: #f5f5f5;
}

.section-dark {
  background-color: #1a1a2e;
  color: #f5f5f5;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #f5f5f5;
}

.section-dark p {
  color: #f5f5f5;
}

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

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

.section-title p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Cards */
.card {
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #a98b2c;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.section-dark .card {
  background-color: #16213e;
  color: #f5f5f5;
}

.card-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-dark .card-header {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.card-body {
  padding: 2rem;
  flex: 1;
}

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.02);
}

.section-dark .card-footer {
  border-top-color: rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.02);
}

.card h3 {
  margin-bottom: 0.5rem;
}

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

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

/* Blog List */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.article {
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #a98b2c;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.article:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.section-dark .article {
  background-color: #16213e;
  color: #f5f5f5;
}

.article-image {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a98b2c;
  font-size: 4rem;
}

.article-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.article p {
  margin-bottom: 1.5rem;
  flex: 1;
}

.article a {
  color: #a98b2c;
  font-weight: 600;
