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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

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

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

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

a:hover {
  color: #1a1a2e;
}

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

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

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

.logo h1 {
  font-size: 1.5rem;
  color: #ab8e2c;
  margin: 0;
}

.logo-tagline {
  display: none;
  font-size: 0.75rem;
  color: #ab8e2c;
  font-style: italic;
  opacity: 0.9;
}

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

.nav a {
  color: #f8f9fa;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ab8e2c;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ab8e2c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f8f9fa;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(171, 142, 44, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero h1 {
  color: #f8f9fa;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ab8e2c;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #ab8e2c;
  color: #1a1a2e;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ab8e2c;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

.cta-button:hover {
  background-color: #1a1a2e;
  color: #ab8e2c;
  box-shadow: 0 6px 16px rgba(171, 142, 44, 0.4);
  transform: translateY(-2px);
}

.cta-button-secondary {
  background-color: transparent;
  color: #ab8e2c;
  border: 2px solid #ab8e2c;
}

.cta-button-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
}

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

/* SECTIONS */
.section {
  padding: 4rem 1.5rem;
  position: relative;
}

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

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

.section-dark {
  background-color: #16213e;
  color: #f8f9fa;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #f8f9fa;
}

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

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ab8e2c;
  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: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  display: flex;
  flex-direction: column;
}

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

.card-header {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e3e8;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.card-title {
  margin: 0;
  color: #1a1a2e;
}

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

.card-description {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 0.95rem;
}

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

.card-link {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: #1a1a2e;
  gap: 0.75rem;
}

.card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e3e8;
}

.card-stat:last-child {
  border-bottom: none;
}

.stat-label {
  color: #2c3e50;
  font-weight: 500;
}

.stat-value {
  color: #ab8e2c;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.article {
