* {
  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: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

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

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

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

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

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

a:hover {
  color: #e8c547;
}

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

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

/* HEADER & NAVIGATION */

.header {
  background-color: #0f0f0f;
  border-bottom: 2px solid #2d2d2d;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 0;
}

.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', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
}

.tagline {
  font-size: 0.75rem;
  color: #5f5f5f;
  font-style: italic;
  margin-top: -0.25rem;
  letter-spacing: 1px;
}

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

.nav a {
  position: relative;
  color: #f5f5f5;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #d4af37;
}

.nav a:hover::after {
  width: 100%;
}

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

/* HERO SECTION */

.hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #0f0f0f 50%, #1a1a1a 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

.hero .accent-text {
  color: #d4af37;
}

.hero p {
  font-size: 1.25rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

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

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

.btn-ghost {
  background-color: transparent;
  color: #f5f5f5;
  border-color: #5f5f5f;
}

.btn-ghost:hover {
  border-color: #d4af37;
  color: #d4af37;
}

/* SECTIONS */

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

.section-dark {
  background-color: #0f0f0f;
}

.section-darker {
  background-color: #0a0a0a;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 3rem 0;
}

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

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

.section-header h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #d4af37, #5f5f5f);
  margin: 0.5rem auto 0;
}

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

/* CARD LAYOUTS */

.card {
  background-color: #1a1a1a;
  border-left: 4px solid #d4af37;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #d4af37, transparent);
}

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

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  fill: #d4af37;
  flex-shrink: 0;
}

.card-title {
  margin: 0;
  font-size: 1.25rem;
}

.card-content {
  color: #d4d4d4;
}

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

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

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

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

/* BLOG LIST */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.article {
  background-color: #1a1a1a;
  border-left: 4px solid #d4af37;
  padding: 2rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.article-header h3 {
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}

.article-meta {
  display: flex;
  gap: 1
