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

:root {
  --primary: #2c3e50;
  --secondary: #34495e;
  --accent: #ab8e2c;
  --background: #f8f9fa;
  --text: #1a1a1a;
  --light-gray: #ecf0f1;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--primary);
  margin-bottom: 0.5em;
  line-height: 1.3;
}

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

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

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

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

p {
  margin-bottom: 1.2em;
  color: #333;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */

.header {
  background-color: var(--primary);
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 2px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.nav-link:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===============================
   HERO SECTION
   =============================== */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 20px;
  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% 80%, rgba(171, 142, 44, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(171, 142, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: white;
  margin-bottom: 0.8em;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2em;
}

.hero-icon {
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--accent);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--accent);
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--accent);
  font-size: 1rem;
  cursor: pointer;
  margin-left: 10px;
}

.cta-button-secondary:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===============================
   SECTIONS
   =============================== */

.section {
  padding: 80px 20px;
  position: relative;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  margin: 0;
  opacity: 0.5;
}

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

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-white {
  background-color: white;
}

.section-light {
  background-color: #f1f3f5;
}

/* ===============================
   CARDS
   =============================== */

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

.card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  padding: 20px;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(171, 142, 44, 0.05) 100%);
}

.card-icon svg {
  width: 48px;
  height: 48px;
}

.card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.card-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-decoration: none;
}

.card-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.card-link::after {
  content: '→';
  margin-left: 8px;
}

/* ===============================
   BLOG LIST & ARTICLES
   =============================== */

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

.article {
  background-color: white;
  padding: 24px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

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

.article h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.article-date
