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

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

body {
  font-family: 'Lato', sans-serif;
  background-color: #f8f7f2;
  color: #2c2c2c;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.25rem;
}

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;
}

/* SVG Icons */
.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: 16px;
}

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

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

.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-style: italic;
  margin-top: 0.25rem;
}

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

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

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

.hero-icon {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #aa8c2c;
  color: #1a1a2e;
  border: 2px solid #aa8c2c;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  background-color: #f8f7f2;
}

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

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #aa8c2c, transparent);
  margin: 1rem auto 0;
}

.section-subtitle {
  color: #aa8c2c;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Card Layouts */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 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;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  display: block;
  height: 4px;
  background-color: #aa8c2c;
}

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

.card-header {
  padding: 2rem 2rem 1rem;
}

.card-content {
  padding: 0 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: #555;
  flex-grow: 1;
}

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

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

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

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

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #aa8c2c;
}

.article h2 {
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.article-excerpt {
  color: #555;
  margin-bottom: 1rem;
}

.article-link {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.article:hover .article-link::after {
  transform: translateX(4px);
}

/* Section Dividers */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #aa8c2c, transparent);
  margin: 2rem 0;
}

/* Footer */
.footer {
  background-color: #1a1a2e;
  color: #f8f7f2;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #1a1a2e, #aa8c2c) 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
