@font-face {
  font-family: 'Playfair Display';
  src: local('Playfair Display'), local('PlayfairDisplay'),
    url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter'), local('Inter-Regular'),
    url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
  font-weight: 400;
  font-style: normal;
}

* {
  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: #f8f7f3;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.375rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

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

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

a:hover {
  color: #8a6f23;
}

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

.button-primary {
  background-color: #aa8c2c;
  color: #f8f7f3;
}

.button-primary:hover {
  background-color: #8a6f23;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(170, 140, 44, 0.3);
}

.button-secondary {
  background-color: #1a1a2e;
  color: #f8f7f3;
}

.button-secondary:hover {
  background-color: #16213e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.3);
}

.button-outline {
  background-color: transparent;
  color: #aa8c2c;
  border: 2px solid #aa8c2c;
}

.button-outline:hover {
  background-color: #aa8c2c;
  color: #f8f7f3;
}

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

.header {
  background-color: #1a1a2e;
  color: #f8f7f3;
  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', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8f7f3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: #aa8c2c;
}

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

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

.nav a {
  color: #f8f7f3;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #f8f7f3;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

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

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

.section:not(:first-of-type) {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #1a1a2e 0%, #aa8c2c 50%, #1a1a2e 100%) 0 0 1 0;
}

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

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

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

.card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #aa8c2c;
  transition: all 0.3s ease;
}

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

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card .casino-icon {
  margin-right: 1rem;
}

.card-title {
  margin: 0;
}

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

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

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

.blog-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.article {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display
