* {
  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;
}

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

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 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

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

a:hover {
  color: #8a6f22;
}

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

button:focus, .btn:focus {
  outline: 2px solid #ab8e2c;
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background-color: #8a6f22;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(171, 142, 44, 0.2);
}

.btn-secondary {
  background-color: #0f3460;
  color: #f8f9fa;
}

.btn-secondary:hover {
  background-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.2);
}

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

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

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

.header {
  background-color: #1a1a2e;
  color: #f8f9fa;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.15);
}

.header-content {
  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.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ab8e2c;
}

.brand .casino-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}

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

.nav a {
  color: #f8f9fa;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

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

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

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #f8f9fa;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(171, 142, 44, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(15, 52, 96, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.hero p {
  color: #e0e0e0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ab8e2c, transparent);
  margin: 1rem auto 0;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
  margin: 3rem 0;
}

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

.card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
}

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

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

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

.card-content {
  padding: 2rem;
}

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

.card-content p {
  color: #666;
  font-size: 0.95rem;
}

.card-footer {
  padding: 1.5rem 2rem;
  background-color: #f8f9fa;
  border-top: 1px solid #e8e8e8;
  text-align: right;
}

.card-footer a {
  color: #ab8e2c;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

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

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.article {
  background-color: #ffffff;
  border-radius: 8px;
  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;
}

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

.article-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0f3460, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ab8e2c;
}

.article-image .casino-icon {
  width: 64px;
  height: 64px;
}

.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  font-size: 0.85rem;
  color: #ab8e2c;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.article-excerpt {
  color: #666;
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.article-link {
  color: #ab8e2c;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
}

.article-link:hover {
  border-bottom-color: #ab8e2c;
}

.footer {
  background-color: #1a1a2e;
