/* ============================================
   SLOTMELD.SHOP - CASINO INFORMATION WEBSITE
   Roulette Probability & Odds
   ============================================ */

/* ============================================
   1. GLOBAL STYLES & RESET
   ============================================ */

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

html {
  font-size: 16px;
  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;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

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

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

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

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

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

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

a:hover {
  color: #2c3e50;
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */

.header {
  background-color: #f8f7f5;
  border-bottom: 2px solid #2c3e50;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

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

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

/* ============================================
   4. HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 50%, #2c3e50 100%);
  background-size: 400% 400%;
  color: #f8f7f5;
  padding: 5rem 1rem;
  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 20% 50%, 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;
  margin-bottom: 0.5rem;
}

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

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

.hero-subtitle {
  color: #aa8c2c;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* ============================================
   5. BUTTONS
   ============================================ */

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

.btn-primary {
  background-color: #aa8c2c;
  color: #f8f7f5;
}

.btn-primary:hover {
  background-color: #2c3e50;
  color: #aa8c2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 62, 80, 0.3);
}

.btn-secondary {
  background-color: #2c3e50;
  color: #f8f7f5;
}

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

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

.btn-outline:hover {
  background-color: #aa8c2c;
  color: #f8f7f5;
}

/* ============================================
   6. SECTIONS & CONTAINERS
   ============================================ */

.section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-divider {
  height: 4px;
  background: linear-gradient(to right, #2c3e50, #aa8c2c, #2c3e50);
  margin: 3rem 0;
  opacity: 0.3;
}

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

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #aa8c2c;
}

/* ============================================
   7. CARDS
   ============================================ */

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

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

.card h3 {
  color: #2c3e50;
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1rem;
}

.card-content {
  margin-top: 1rem;
}

.card-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* ============================================
   8. BLOG & ARTICLE LISTS
   ============================================ */

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

.article {
  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;
}

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

.article-header {
  background-color: #2c3e50;
  color: #f8f7f5;
  padding: 1.5rem;
  border-left: 4px solid #aa8c2c;
}

.article-header h3 {
  color: #f8f7f5;
  margin-top: 0;
}

.article-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.article-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-date {
  font-size: 0.85rem;
  color: #666;
}

.article-read-more {
  color: #aa8c2c;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-read-more:hover {
  color: #2c3e50;
}

/* ============================================
   9. CONTENT SECTIONS
   ============================================ */

.highlight-box {
  background-color: #f8f7f5;
  border-left: 4px solid #aa8c2c;
  padding: 1.5rem
