@font-face {
  font-family: 'Playfair Display';
  src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&display=swap');
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f7f4;
  color: #2a2a2a;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f0f0f;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

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

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

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

a:hover {
  color: #0f0f0f;
  text-decoration: underline;
}

button, .btn {
  font-family: 'Source Sans Pro', sans-serif;
  padding: 0.875rem 2rem;
  border: 2px solid #aa8c2c;
  background-color: #aa8c2c;
  color: #f8f7f4;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover, .btn:hover {
  background-color: #8a6f1f;
  border-color: #8a6f1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(170, 140, 44, 0.2);
}

button:active, .btn:active {
  transform: translateY(0);
}

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

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

/* Header and Navigation */

.header {
  background-color: #0f0f0f;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px 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: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #aa8c2c;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tagline {
  font-size: 0.7rem;
  color: #aa8c2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
}

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

.nav a {
  color: #f8f7f4;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

/* Hero Section */

.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
  color: #f8f7f4;
  padding: 6rem 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(170, 140, 44, 0.1) 0%, transparent 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-right: 8px;
  color: #aa8c2c;
}

.hero h1 {
  color: #f8f7f4;
  margin-bottom: 1rem;
}

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

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

/* Sections */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #aa8c2c, transparent);
}

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

/* Card-based Layouts */

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

.card {
  background: white;
  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;
  display: flex;
  flex-direction: column;
}

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

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

.card-header {
  padding: 2rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header h3 {
  margin: 0;
  flex: 1;
}

.card-body {
  padding: 2rem;
  flex: 1;
}

.card-body p {
  color: #555;
  font-size: 0.95rem;
}

.card-footer {
  padding: 1.5rem 2rem;
  background-color: #f8f7f4;
  border-top: 1px solid #f0f0f0;
}

.card-footer a {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Blog List */

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.article {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #aa8c2c;
  display: grid;
  grid-template-columns: 1fr 250px;
  align-items: stretch;
}

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

.article-content {
  padding: 2.5rem;
}

.article-content h3 {
  margin-top: 0;
}

.article-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-excerpt {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.article-image {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */

.footer {
  background-color: #0f0f0f;
  color: #f8f7f4;
  padding
