* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #f5f3f0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a3a52;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a3a52;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a3a52;
}

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

h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

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

a:hover {
  color: #1a3a52;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header Styles */
.header {
  background-color: #1a3a52;
  color: #f5f3f0;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.brand-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a78a2b, #d4b896);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #1a3a52;
}

.brand-text h1 {
  font-size: 1.5rem;
  color: #f5f3f0;
  margin: 0;
}

.tagline {
  font-size: 0.75rem;
  color: #a78a2b;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #f5f3f0;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
}

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

.nav a.active {
  border-bottom-color: #a78a2b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a3a52 0%, #0f1f2e 100%);
  color: #f5f3f0;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content {
  max-width: 800px;
  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;
}

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

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Source Sans Pro', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background-color: #a78a2b;
  color: #f5f3f0;
}

.btn-primary:hover {
  background-color: #d4b896;
  color: #1a3a52;
  box-shadow: 0 4px 12px rgba(167, 138, 43, 0.3);
}

.btn-secondary {
  background-color: #1a3a52;
  color: #f5f3f0;
}

.btn-secondary:hover {
  background-color: #0f1f2e;
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.3);
}

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

.btn-outline:hover {
  background-color: #a78a2b;
  color: #f5f3f0;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Section Divider */
.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #a78a2b, transparent);
  margin: 3rem 0;
}

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

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

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

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section:nth-child(even) {
  background-color: #f0ebe4;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #a78a2b;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #f0ebe4;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  color: #1a3a52;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0dbd0;
}

.card-meta {
  font-size: 0.85rem;
  color: #999;
}

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

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

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

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

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

/* Blog List */
.blog-list {
  list-style: none;
}

.blog-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0dbd0;
  transition: all 0.3s ease;
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-item:hover {
  padding-left: 1rem;
  background-color: rgba(167, 138, 43, 0.05);
}

.blog-item a {
  display: block;
  color: #1a3a52;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.blog-item a:hover {
  color: #a78a2b;
}

.blog-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: #666;
  font-size:
