* {
  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: #f8f7f5;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', Georgia, serif;
  color: #2c1810;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: #3a3a3a;
}

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

a:hover {
  color: #2c1810;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

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

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

.brand-tagline {
  font-size: 0.75rem;
  color: #d4af6f;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

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

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

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

.nav-toggle {
  display: none;
  background: none;
  color: #f8f7f5;
  font-size: 1.5rem;
}

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

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

.hero h1 {
  color: #f8f7f5;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d4af6f;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero p {
  color: #e8e7e5;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.cta-primary {
  background-color: #aa8c2c;
  color: #2c1810;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin: 0.5rem;
  box-shadow: 0 4px 12px rgba(170, 140, 44, 0.3);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background-color: #c9ab4a;
  box-shadow: 0 6px 16px rgba(170, 140, 44, 0.4);
  transform: translateY(-2px);
}

.cta-secondary {
  background-color: transparent;
  color: #aa8c2c;
  padding: 0.875rem 2rem;
  border: 2px solid #aa8c2c;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background-color: #aa8c2c;
  color: #2c1810;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

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

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

.card-header {
  padding: 1.5rem;
  background-color: #f8f7f5;
  border-bottom: 1px solid #e8e7e5;
}

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

.card-title {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.25rem;
  color: #2c1810;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #3a3a3a;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-footer {
  padding: 1.5rem;
  background-color: #f8f7f5;
  border-top: 1px solid #e8e7e5;
  text-align: center;
}

.card-link {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-link:hover {
  border-bottom-color: #aa8c2c;
  padding-right: 0.25rem;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

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

.blog-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 6px;
  border-left: 4px solid #aa8c2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-tag {
  display: inline-block;
  background-color: #f0ede9;
  color: #2c1810;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Casino Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
