/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #1a1a1a;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1em;
  color: #1a1a1a;
}

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

a:hover {
  color: #c4a747;
}

/* Header */
.header {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  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: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #a98b2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: #c4a747;
}

.tagline {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
}

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 70% 30%, rgba(169, 139, 44, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto 1rem;
  fill: #a98b2c;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
  background-color: #a98b2c;
  color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
}

.btn-primary:hover {
  background-color: #c4a747;
  box-shadow: 0 6px 16px rgba(169, 139, 44, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #2d2d2d;
  color: #a98b2c;
  border: 2px solid #a98b2c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background-color: #a98b2c;
  color: #f5f5f5;
  box-shadow: 0 6px 16px rgba(169, 139, 44, 0.3);
  transform: translateY(-2px);
}

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

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

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

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a1a1a 0%, #a98b2c 50%, #1a1a1a 100%);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Cards */
.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 #a98b2c;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-header {
  padding: 2rem;
  border-bottom: 1px solid #f0f0f0;
  background-color: #f9f9f9;
}

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

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

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

.card h3 {
  margin-top: 0;
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

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

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

.article-date,
.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.article p {
  color: #555;
  margin-bottom: 1.5rem;
}

.article-link {
  color: #a98b2c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.article-link:hover {
