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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f4;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', Georgia, serif;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

a:hover {
  color: #1a1a2e;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-right: 12px;
}

/* HEADER & NAVIGATION */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.logo {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #aa8c2c;
  display: flex;
  align-items: center;
}

.logo-text {
  margin-left: 0.5rem;
}

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-weight: 400;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

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

.nav a {
  color: #f8f7f4;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #aa8c2c;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2c2c2c 100%);
  color: #f8f7f4;
  padding: 4rem 2rem;
  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(170, 140, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  color: #f8f7f4;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-icon-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: #aa8c2c;
  border-color: #aa8c2c;
}

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

.btn-dark {
  background-color: #16213e;
  color: #aa8c2c;
  border-color: #16213e;
}

.btn-dark:hover {
  background-color: #0f1628;
  border-color: #aa8c2c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #aa8c2c 50%, transparent 100%);
  margin: 0;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #aa8c2c;
  border-radius: 2px;
}

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

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.card-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 2rem;
  color: #f8f7f4;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-header h3 {
  color: #f8f7f4;
  font-size: 1.5rem;
}

.card-body {
  padding: 2rem;
}

.card-body h4 {
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.card-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-footer {
  padding: 0 2rem 2rem;
}

.card-footer .btn {
  width: 100%;
  text-align: center;
}

.card-icon {
  width: 48px;
  height: 48px;
  fill: #aa8c2c;
  margin-bottom: 1rem;
}

/* BLOG LIST */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.article {
  background-color: #ffffff;
  border-left: 4px solid #aa8c2c;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.article-date {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.article h3 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-excerpt {
  color: #666;
  font-size: 0.95rem;
  margin-bottom:
