* {
  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: #f5f3f0;
  color: #2c2c2c;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

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

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

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

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

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

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

a:hover {
  color: #1a1a2e;
}

button, .btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #8a6f23;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(167, 138, 43, 0.3);
}

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

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

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

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

/* SVG Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #a78a2b;
}

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

.logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a78a2b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .casino-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

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

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

.nav a {
  color: #f5f3f0;
  font-weight: 500;
  position: relative;
  font-size: 0.95rem;
}

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

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #a78a2b;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  background-size: 400% 400%;
  color: #f5f3f0;
  padding: 4rem 1.5rem;
  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 top right, rgba(167, 138, 43, 0.1), transparent);
  pointer-events: none;
}

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

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

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

.hero p {
  color: #d4d4d4;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

.card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #a78a2b;
  display: flex;
  flex-direction: column;
}

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

.card-header {
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header .casino-icon {
  flex-shrink: 0;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.card-body p {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.card-link {
  color: #a78a2b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: #1a1a2e;
}

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

.article {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid #a78a2b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.article-header {
  margin-bottom: 1rem;
}

.article h3 {
  margin: 0 0 0.5rem 0;
  color: #1a1a2e;
}

.article-meta {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 1rem;
}

.article-meta span {
  margin-right: 1.5rem;
}

.article p {
  color: #666;
  margin-bottom: 1rem;
}

.article-read-more {
  display: inline-block;
  color: #a78a
