* {
  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;
  color: #2c2c2c;
  background-color: #f5f5f5;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a2e;
}

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

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

a:hover {
  color: #1a1a2e;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.15);
}

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

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

.brand-name {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98b2c;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #d4d4d8;
  font-style: italic;
  display: none;
}

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

.nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
  display: block;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2c3e50 100%);
  color: #ffffff;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.hero-tagline {
  font-size: 1.25rem;
  color: #a98b2c;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-description {
  color: #d4d4d8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

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

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

.btn-primary:hover {
  background-color: #8b7123;
  border-color: #8b7123;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.25);
}

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

.btn-secondary:hover {
  background-color: #a98b2c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.25);
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* Section Styles */
.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a98b2c, transparent);
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #a98b2c;
  border-radius: 2px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

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

.section-dark .section-header h2::after {
  background-color: #a98b2c;
}

/* Card Styles */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0;
}

.card {
  background: #ffffff;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  border-top: 4px solid #a98b2c;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(26, 26, 46, 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(169, 139, 44, 0.2));
}

.card h3 {
  margin-top: 0;
  color: #1a1a2e;
}

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

.card-link {
  color: #a98b2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

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

.card-dark h3 {
  color: #ffffff;
}

.card-dark p {
  color: #d4d4d8;
}

.card-dark .card-link {
  color: #a98b2c;
}

/* Blog/Article List */
.blog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  padding: 2rem;
  border-left: 4px solid #a98b2c;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
}

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

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}

.article
