/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a2e;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  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.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #1a1a2e;
  opacity: 0.95;
}

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

a:hover {
  color: #1a1a2e;
  opacity: 0.9;
}

/* Header Styles */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98b2c;
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 0.75rem;
  color: #a98b2c;
  opacity: 0.8;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

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

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

.nav-item {
  position: relative;
}

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

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

.nav-link.active {
  color: #a98b2c;
  border-bottom-color: #a98b2c;
}

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

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

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

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

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

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

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

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

/* Button Styles */
.btn {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #a98b2c;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
}

.btn-primary:hover {
  background-color: #1a1a2e;
  color: #a98b2c;
  box-shadow: 0 6px 20px rgba(169, 139, 44, 0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #a98b2c;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
  transform: translateY(-2px);
}

.btn-text {
  background-color: transparent;
  color: #a98b2c;
  padding: 0.875rem 1.5rem;
}

.btn-text:hover {
  color: #f5f5f5;
}

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

.section + .section {
  border-top: 1px solid rgba(169, 139, 44, 0.2);
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a98b2c, transparent);
}

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

.section-header h2 {
  margin-bottom: 1rem;
  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: linear-gradient(90deg, transparent, #a98b2c, transparent);
  border-radius: 2px;
}

.section-subtitle {
  color: #16213e;
  font-size: 1.125rem;
  opacity: 0.9;
  margin-top: 1rem;
}

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

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(169, 139, 44, 0.3));
}

.card-content {
  padding: 1.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.card-text {
  color: #1a1a2e;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-meta {
  font-size: 0.875rem;
  color: #a98b2c;
  font-weight: 500;
  margin-top: auto;
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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