* {
  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: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.875rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: #8a6e1f;
}

/* Header Styles */
.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 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ab8e2c;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #ab8e2c;
  opacity: 0.9;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}

/* Navigation Styles */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ab8e2c;
  transition: all 0.3s ease;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(171, 142, 44, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

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

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

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

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ab8e2c, transparent);
}

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

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: inline-block;
  color: #ab8e2c;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Card Styles */
.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  border-top: 4px solid #ab8e2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1rem;
  opacity: 0.85;
}

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

.card-description {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.card-meta {
  font-size: 0.875rem;
  color: #999;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.card-meta span {
  display: inline-block;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background-color: #8a6e1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

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

.btn-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
  transform: translateY(-2px);
}

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

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

.btn-block {
  width: 100%;
  display: block;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.article {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border-left: 4px solid #ab8e2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  gap: 2rem;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.article-image {
  flex: 0 0 300px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  min-height: 200px;
  border-radius: 8px 0 0 8px;
}

.article-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-category {
  display: inline-block;
  color: #ab8e2c;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.article-title {
  font-size: 1.75rem;
  margin-bottom: 1rem
