/* ==========================================
   HEADER - Premium Navigation
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: calc(var(--z-fixed) + 50);
  transition: all var(--transition);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: var(--primary-blue);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 10;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-gold);
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--text-white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-text-highlight {
  display: block;
  color: var(--accent-gold);
  font-weight: var(--weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.main-nav a {
  font-family: var(--font-body);
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--text-white);
  text-decoration: none;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: calc(var(--z-fixed) + 100);
  transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle:active {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active {
  background: rgba(245, 166, 35, 0.2);
}

.mobile-menu-toggle.active span {
  background: var(--accent-gold);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  z-index: var(--z-fixed);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav li {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.mobile-nav.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: var(--weight-semibold);
  color: var(--text-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
  padding-left: calc(var(--space-lg) + 8px);
}

.mobile-nav a.active {
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gold);
  color: #000;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: #000;
}

.btn-white {
  background: var(--bg-white);
  color: var(--primary-blue);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
}

.btn-white:hover {
  background: var(--bg-light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--small-size);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Button with shine effect */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shine);
  transition: left 0.5s ease;
}

.btn-shine:hover::before {
  left: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  overflow: hidden;
  padding-top: var(--header-height);
}

/* Decorative Background Elements */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Gold particles */
.gold-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}

.gold-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.gold-particle:nth-child(2) { top: 40%; left: 20%; animation-delay: 0.5s; width: 6px; height: 6px; }
.gold-particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; width: 10px; height: 10px; }
.gold-particle:nth-child(4) { top: 30%; right: 20%; animation-delay: 1.5s; }
.gold-particle:nth-child(5) { top: 50%; right: 10%; animation-delay: 2s; width: 12px; height: 12px; }
.gold-particle:nth-child(6) { top: 70%; right: 25%; animation-delay: 2.5s; width: 6px; height: 6px; }
.gold-particle:nth-child(7) { top: 15%; right: 35%; animation-delay: 0.3s; width: 5px; height: 5px; }
.gold-particle:nth-child(8) { top: 80%; left: 30%; animation-delay: 1.8s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.9;
  }
}

/* Gold decorative lines */
.hero-lines {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 80%;
  opacity: 0.15;
}

.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  height: 2px;
  border-radius: 2px;
}

.hero-line:nth-child(1) { width: 60%; top: 20%; right: 10%; }
.hero-line:nth-child(2) { width: 80%; top: 35%; right: 5%; }
.hero-line:nth-child(3) { width: 50%; top: 50%; right: 15%; }
.hero-line:nth-child(4) { width: 70%; top: 65%; right: 8%; }
.hero-line:nth-child(5) { width: 40%; top: 80%; right: 20%; }

/* Gold circle decoration */
.hero-circle {
  position: absolute;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  right: -100px;
  top: 20%;
}

.hero-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  right: 10%;
  bottom: 10%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-right: -100px;
}

.hero-image img {
  max-width: 130%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--accent-gold);
  margin-bottom: var(--space-lg);
}

.hero-badge-icon {
  font-size: 1.2em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  font-weight: var(--weight-extrabold);
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--accent-gold);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--weight-bold);
  color: var(--accent-gold);
}

.hero-stat-label {
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-xs);
}

/* ==========================================
   CASINO CARDS - TOP 3
   ========================================== */
.top-casinos-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-light-gray);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-gold);
  color: #000;
  font-size: var(--xs-size);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--body-size);
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Casino Cards Grid */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 280px));
  gap: var(--space-xl);
  justify-content: center;
}

.casino-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.casino-card:hover::before {
  opacity: 1;
}

/* Rank Badge */
.casino-rank {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-heading);
  font-size: var(--body-size);
  font-weight: var(--weight-bold);
  border-radius: 50%;
}

.casino-rank.gold { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.casino-rank.silver { background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%); }
.casino-rank.bronze { background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%); }

.casino-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.casino-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.casino-logo-placeholder {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--weight-bold);
  color: var(--primary-blue);
}

.casino-name {
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.casino-bonus {
  font-size: var(--small-size);
  color: var(--text-gray);
  margin-bottom: var(--space-md);
}

.casino-bonus strong {
  display: block;
  font-size: var(--body-size);
  color: var(--accent-gold-dark);
  font-weight: var(--weight-semibold);
}

/* Rating Stars */
.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.rating-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.star {
  color: var(--accent-gold);
  font-size: 18px;
  line-height: 1;
}

.star.empty {
  color: #E0E0E0;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.casino-feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--bg-light-gray);
  border-radius: var(--radius-full);
  font-size: var(--xs-size);
  color: var(--text-gray);
}

.casino-feature svg {
  width: 12px;
  height: 12px;
  color: var(--accent-gold);
}

.casino-cta {
  width: 100%;
}

/* Casino Rating */
.casino-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.rating-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--accent-gold);
}

.rating-stars-inline {
  display: flex;
  gap: 2px;
}

.rating-stars-inline .star {
  color: var(--bg-gray);
  font-size: 1rem;
}

.rating-stars-inline .star.filled {
  color: var(--accent-gold);
}

/* Casino card animation */
.casino-card {
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.casino-grid .casino-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.casino-grid .casino-card:nth-child(1) { transition-delay: 0s; }
.casino-grid .casino-card:nth-child(2) { transition-delay: 0.08s; }
.casino-grid .casino-card:nth-child(3) { transition-delay: 0.16s; }

.casino-grid.filtering .casino-card {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}

.casino-grid.filtering .casino-card:nth-child(1) { transition-delay: 0s; }
.casino-grid.filtering .casino-card:nth-child(2) { transition-delay: 0.05s; }
.casino-grid.filtering .casino-card:nth-child(3) { transition-delay: 0.1s; }

/* ==========================================
   FILTER SIDEBAR
   ========================================== */
.top-casinos-layout {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.filter-sidebar {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
  min-width: 220px;
  flex-shrink: 0;
}

.filter-title {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--bg-gray);
}

.filter-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  font-family: var(--font-body);
}

.filter-item:hover {
  background: var(--bg-light-gray);
}

.filter-item.active {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--accent-gold);
}

.filter-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light-gray);
  border-radius: 50%;
  color: var(--primary-blue);
  transition: all var(--transition-fast);
}

.filter-item:hover .filter-icon,
.filter-item.active .filter-icon {
  background: var(--accent-gold);
  color: #000;
}

.filter-text {
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--text-dark);
}

/* ==========================================
   CATEGORIES GRID
   ========================================== */
.categories-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.categories-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-content: start;
}

.category-grid-6 {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: var(--space-2xl);
}

/* Articles Grid Home */
.articles-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.article-card-home {
  display: flex;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.article-card-home .article-image {
  width: 180px;
  min-height: 140px;
  flex-shrink: 0;
  background: var(--bg-light-gray);
  overflow: hidden;
}

.article-card-home .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.article-card-home:hover .article-image img {
  transform: scale(1.05);
}

.article-card-home .article-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.category-item:hover {
  background: var(--bg-white);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-item.active {
  background: var(--accent-gold);
}

.category-item.active .category-icon,
.category-item.active .category-name {
  color: #000;
}

.category-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.category-name {
  font-size: var(--small-size);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

/* ==========================================
   ARTICLE CARDS
   ========================================== */
.articles-section {
  flex: 1;
}

.article-card {
  display: flex;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  margin-bottom: var(--space-lg);
}

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

.article-image {
  width: 220px;
  min-height: 160px;
  flex-shrink: 0;
  background: var(--bg-light-gray);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-category {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary-blue);
  font-size: var(--xs-size);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.article-title {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.article-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.article-title a:hover {
  color: var(--primary-blue);
}

.article-excerpt {
  font-size: var(--small-size);
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--xs-size);
  color: var(--text-light-gray);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Article Cards for Category/Grid Pages */
.articles-grid .article-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  height: 100%;
}

.articles-grid .article-card:hover {
  transform: translateY(-4px);
}

.article-card-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-category {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary-blue);
  font-family: var(--font-body);
  font-size: var(--xs-size);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: capitalize;
}

.article-card-title {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: var(--space-md);
  flex: 1;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.article-card-title a:hover {
  color: var(--primary-blue);
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--accent-gold);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.article-card-link:hover {
  color: var(--accent-gold-hover);
  gap: var(--space-sm);
}

.article-card-link svg {
  transition: transform var(--transition-fast);
}

.article-card-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   ARTICLE PAGE - Meta Header & Share
   ========================================== */
.article-meta-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-meta-header span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.8);
}

.article-meta-header svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.article-date {
  color: rgba(255, 255, 255, 0.8);
}

.article-reading-time {
  color: rgba(255, 255, 255, 0.8);
}

/* Article Share Buttons */
.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--bg-gray);
}

.share-label {
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--text-gray);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--text-white);
  transition: all var(--transition);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.share-facebook {
  background: #1877f2;
}

.share-facebook:hover {
  background: #166fe5;
}

.share-twitter {
  background: #1da1f2;
}

.share-twitter:hover {
  background: #0d95e8;
}

.share-linkedin {
  background: #0a66c2;
}

.share-linkedin:hover {
  background: #004182;
}

.share-whatsapp {
  background: #25d366;
}

.share-whatsapp:hover {
  background: #128c7e;
}

/* ==========================================
   CATEGORY HERO
   ========================================== */
.category-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
  background: var(--hero-gradient);
  color: var(--text-white);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.category-hero .breadcrumbs {
  margin-bottom: var(--space-xl);
}

.category-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.category-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  padding: var(--space-lg);
  background: rgba(245, 166, 35, 0.15);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  color: var(--accent-gold);
}

.category-hero-icon svg {
  width: 100%;
  height: 100%;
}

.category-hero-title {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  font-weight: var(--weight-extrabold);
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-hero-description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.category-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
}

.category-stat {
  text-align: center;
}

.category-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--weight-bold);
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
}

.category-stat-label {
  font-family: var(--font-body);
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   LIVE STATS SECTION (Social Proof)
   ========================================== */
.live-stats-section {
  padding: var(--space-4xl) 0;
  background: var(--hero-gradient);
  overflow: hidden;
  position: relative;
}

.live-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.live-stats-section .section-title {
  color: var(--text-white);
}

.live-stats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: var(--primary-blue-dark);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--weight-extrabold);
  color: var(--text-white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-value--time {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.stat-plus {
  color: var(--accent-gold);
  font-weight: var(--weight-bold);
}

.stat-label {
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--weight-medium);
}

/* Pulse animation for live indicators */
.stat-pulse {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

.stat-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Count-up animation helper */
.stat-value[data-counter],
.stat-value span[data-counter] {
  transition: none;
}

/* ==========================================
   KEYWORDS CAROUSEL (Updated)
   ========================================== */

@keyframes scroll-keywords {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Keyword Modal (Updated) */

/* Keyword Modal Body Content Styling */
.site-footer {
  background: var(--bg-light-gray);
  padding: var(--space-3xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  text-decoration: none;
}

.footer-logo:hover .footer-logo-text {
  color: var(--accent-gold);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-gold);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.footer-logo-highlight {
  color: var(--accent-gold);
}

.footer-brand p {
  font-size: var(--small-size);
  color: var(--text-dark);
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: var(--body-size);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: var(--small-size);
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-disclaimer {
  padding: var(--space-xl);
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.footer-disclaimer p {
  font-size: var(--xs-size);
  color: var(--text-dark);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  font-size: var(--small-size);
  color: var(--text-dark);
}

.footer-licenses {
  display: flex;
  gap: var(--space-md);
}

.license-badge {
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-size: var(--xs-size);
  color: var(--text-dark);
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #000;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: var(--z-sticky);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-4px);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-wide {
  max-width: var(--container-wide);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.bg-light {
  background: var(--bg-light-gray);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-card-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--bg-gray);
}

.contact-card-title svg {
  color: var(--accent-gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: var(--body-size);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--bg-gray);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light-gray);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}
.contact-submit-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #c07800 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}
.contact-submit-btn:active {
  transform: translateY(0);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--small-size);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.contact-success {
  text-align: center;
  padding: var(--space-xl) 0;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: #22c55e;
}

.contact-success h3 {
  font-family: var(--font-heading);
  font-size: var(--h3-size);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.contact-success p {
  font-family: var(--font-body);
  color: var(--text-gray);
  margin-bottom: var(--space-xl);
}

/* Contact Info Column */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.contact-info-card-highlight {
  background: var(--primary-blue);
  color: var(--text-white);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.contact-info-card-highlight .contact-info-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-gold);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: var(--h4-size);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.contact-info-card-highlight h3 {
  color: var(--text-white);
}

.contact-info-card p {
  font-family: var(--font-body);
  font-size: var(--small-size);
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.contact-info-card-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--small-size);
  font-weight: var(--weight-medium);
  color: var(--accent-gold);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.contact-info-link:hover {
  gap: var(--space-sm);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

/* Related Links - see layout.css for base styles */

/* Article Page Header */
.article-page-header {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--hero-gradient);
  color: var(--text-white);
  overflow: hidden;
}

.article-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.article-page-header .container {
  position: relative;
  z-index: 1;
}

/* Page Title in Article Header */
.page-title {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  font-weight: var(--weight-bold);
  color: var(--text-white);
  line-height: 1.2;
  margin: 0;
}

/* Article image responsiveness */
.article-content img, .art-content img, .art-img img { max-width: 100%; height: auto; }


/* ==========================================
   SIDEBAR CASINO CARDS (sb-casinos)
   ========================================== */
.sb-casinos {
  background: var(--bg-white);
  border: 1px solid var(--bg-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-lg);
}
.sb-casinos__title {
  font-size: var(--body-size);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.sb-casinos__title svg { color: var(--accent-gold); }
.sb-casino {
  display: grid;
  grid-template-columns: 24px 42px 1fr auto;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--bg-gray);
}
.sb-casino:last-child { border-bottom: none; }
.sb-casino--top {
  background: linear-gradient(90deg, rgba(245,166,35,0.08), transparent);
  margin: 0 calc(-1 * var(--space-sm));
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  border-bottom: none;
}
.sb-casino__rank {
  font-size: var(--xs-size);
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
}
.sb-casino__rank--gold { color: var(--accent-gold); }
.sb-casino__img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.1);
  color: var(--accent-gold);
  flex-shrink: 0;
}
.sb-casino__img svg { width: 24px; height: 24px; }
.sb-casino__body { min-width: 0; }
.sb-casino__name {
  font-size: var(--small-size);
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb-casino__stars {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--accent-gold);
  font-size: var(--xs-size);
  font-weight: 600;
}
.sb-casino__stars span {
  margin-left: 3px;
  color: var(--text-gray);
}
.sb-casino__cta {
  padding: var(--space-xs) var(--space-md);
  background: var(--accent-gold);
  color: #000;
  font-size: var(--xs-size);
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.sb-casino__cta:hover {
  background: var(--accent-gold-hover);
  box-shadow: 0 0 8px rgba(245,166,35,0.3);
}

/* === Audit Fixes === */
html, body { overflow-x: hidden; }
.article-content, .art-content, .art-body { line-height: 1.7; }
