/* 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: #2d1b2e;
  background-color: #f8f7f5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

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

a:hover {
  color: #2d1b2e;
  text-decoration: underline;
}

/* SVG Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #aa8c2c;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.casino-icon:hover {
  fill: #2d1b2e;
  transform: scale(1.05);
}

/* Header */
.header {
  background-color: #2d1b2e;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  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;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-style: italic;
  letter-spacing: 0.5px;
  max-width: 150px;
  line-height: 1.2;
}

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

.nav-item {
  position: relative;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2d1b2e 0%, #1a0f1b 50%, #2d1b2e 100%);
  color: #f8f7f5;
  padding: 5rem 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%;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  fill: #aa8c2c;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: #aa8c2c;
  color: #f8f7f5;
  box-shadow: 0 4px 12px rgba(170, 140, 44, 0.25);
}

.btn-primary:hover {
  background-color: #9a7c1c;
  box-shadow: 0 6px 16px rgba(170, 140, 44, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
  color: #f8f7f5;
}

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #f8f7f5;
  text-decoration: none;
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

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

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

.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: 80px;
  height: 3px;
  background: linear-gradient(90deg, #aa8c2c 0%, #2d1b2e 100%);
  border-radius: 2px;
}

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

.card {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 27, 46, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2d1b2e 0%, #1a0f1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aa8c2c;
  font-size: 3rem;
  overflow: hidden;
}

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

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

.card-content h3 {
  margin-top: 0;
  color: #2d1b2e;
  font-size: 1.5rem;
}

.card-content p {
  color: #555;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.card-link {
  color: #aa8c2c;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #2d1b2e;
  text-decoration: none;
}

/* Blog List */
.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.article-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #2d1b2e;
}
