* {
  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: #f8f9fa;
  color: #1a1a2e;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

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

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

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

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

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

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

a:hover {
  color: #1a1a2e;
}

button, .btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: #ab8e2c;
  color: #f8f9fa;
  border: 2px solid #ab8e2c;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button:hover, .btn:hover {
  background-color: #1a1a2e;
  border-color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

button:active, .btn:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  color: #ab8e2c;
  border: 2px solid #ab8e2c;
}

.btn-secondary:hover {
  background-color: #ab8e2c;
  color: #f8f9fa;
}

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

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

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

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

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

.nav-mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #16213e;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(171, 142, 44, 0.2);
  }

  .nav-mobile {
    display: block;
    background: none;
    border: none;
    color: #ab8e2c;
    font-size: 1.5rem;
    cursor: pointer;
  }
}

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

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

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

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #ab8e2c;
  margin-bottom: 2rem;
  font-style: italic;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Divider */
.section-divider {
  height: 3px;
  background: linear-gradient(to right, #1a1a2e, #ab8e2c, #1a1a2e);
  margin: 3rem 0;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, transparent, #ab8e2c, transparent);
}

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

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

.card-header {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e4e4e7;
}

.card-header .casino-icon {
  color: #ab8e2c;
}

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

.card-footer {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-top: 1px solid #e4e4e7;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.card-text {
  color: #4b4b66;
  margin-bottom: 0.5rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

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

.article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  border-left: 4px solid #ab8e2c;
  transition: all 0.3s ease;
}

.article:hover {
  box-shadow: 0 8px 24px rgba(171, 142, 44
