/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-size: var(--text-xl);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--color-text);
  background: rgba(var(--color-accent-rgb), 0.1);
}

.nav-link.active {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.15);
  border-bottom: 2px solid var(--color-accent);
}

/* Nav Item with Dropdown */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: #1a1a2e;
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: var(--space-sm) 0;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-link:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-accent);
  padding-left: calc(var(--space-lg) + 4px);
}

.dropdown-link.active {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: var(--z-dropdown);
  overflow-y: auto;
  padding: var(--space-md);
  display: none;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
}

/* Mobile Submenu */
.mobile-menu__item.has-submenu {
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu__item-header {
  display: flex;
  align-items: center;
}

.mobile-menu__item-header .mobile-menu__link {
  flex: 1;
  border-bottom: none;
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-submenu-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-submenu-toggle:hover {
  color: var(--color-accent);
}

.mobile-submenu-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  padding: var(--space-sm) 0;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu__link {
  display: block;
  padding: var(--space-md);
  padding-left: var(--space-xl);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.mobile-submenu__link:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-accent);
  border-left-color: var(--color-accent);
}

.mobile-submenu__link.active {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.15);
  border-left-color: var(--color-accent);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: var(--transition);
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: var(--transition);
}

.mobile-menu-btn span::before {
  top: -7px;
}

.mobile-menu-btn span::after {
  top: 7px;
}

.mobile-menu-btn.active span {
  background: transparent;
}

.mobile-menu-btn.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-text);
  box-shadow: var(--shadow), 0 0 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(var(--color-primary-rgb), 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-bg);
}

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

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-base);
  min-height: 52px;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  min-height: 36px;
}

/* ========== CARDS ========== */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

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

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

.card-body {
  padding: var(--space-lg);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Category cards */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  min-height: 180px;
}

.category-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.category-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
}

.category-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.category-card-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Casino cards (for article page) */
.casino-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.casino-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  box-shadow: var(--shadow-glow);
}

.casino-card-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--color-bg-light);
  flex-shrink: 0;
}

.casino-card-info {
  flex: 1;
}

.casino-card-name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.casino-card-bonus {
  font-size: var(--text-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.casino-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: #ffd700;
  font-size: var(--text-sm);
}

.casino-card-actions {
  flex-shrink: 0;
}

/* ========== KEYWORDS CAROUSEL ========== */
.carousel-section {
  padding: var(--space-3xl) 0;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 202, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 255, 222, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(0, 101, 248, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #080818 0%, #0a1025 50%, #080818 100%);
}

.carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 202, 255, 0.4) 50%, transparent 100%);
}

.carousel-container {
  position: relative;
}

/* Static layout (1-4 keywords) */
.carousel-static {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Animated layout */
.carousel-row {
  display: flex;
  gap: var(--space-md);
  will-change: transform;
}

.carousel-row-1 {
  animation: scroll-left 240s linear infinite;
}

.carousel-row-2 {
  animation: scroll-right 250s linear infinite;
}

.carousel-row-3 {
  animation: scroll-left 260s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.carousel-pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-lg);
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}

.carousel-pill:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-bg-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.1);
}

.modal-title {
  font-size: var(--text-xl);
  font-weight: 600;
}

.modal-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.modal-close:hover {
  background: rgba(var(--color-accent-rgb), 0.1);
  color: var(--color-text);
}

.modal-body {
  padding: var(--space-lg);
  overflow-y: auto;
  flex: 1;
}

/* ========== TAGS ========== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-accent);
  transition: var(--transition);
  min-height: 32px;
}

.tag:hover {
  background: rgba(var(--color-accent-rgb), 0.2);
  border-color: var(--color-accent);
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: var(--space-sm);
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  transition: var(--transition);
}

.pagination-item:hover {
  border-color: var(--color-accent);
}

.pagination-item.active {
  background: var(--gradient-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.pagination-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs-separator {
  color: var(--color-text-dim);
}

.breadcrumbs-current {
  color: var(--color-text);
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-bg-light);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: var(--transition);
  min-height: 44px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.1);
}

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

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

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-light);
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.1);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand {
  grid-column: span 1;
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

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

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: var(--transition);
  padding: var(--space-xs) 0;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ========== ARTICLE CONTENT ========== */
.article-content {
  line-height: 1.8;
}

.article-content h2 {
  font-size: var(--text-2xl);
  margin: var(--space-2xl) 0 var(--space-lg);
  color: var(--color-text);
}

.article-content h3 {
  font-size: var(--text-xl);
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.article-content p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-muted);
}

.article-content ul,
.article-content ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.article-content li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.article-content ul li {
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--color-accent-2);
}

.article-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.article-content figure {
  margin: var(--space-xl) 0;
}

.article-content figcaption {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
  text-align: center;
  margin-top: var(--space-sm);
}

.article-content table {
  margin: var(--space-xl) 0;
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-content th,
.article-content td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.1);
}

.article-content th {
  background: var(--color-bg-light);
  font-weight: 600;
  color: var(--color-text);
}

.article-content td {
  color: var(--color-text-muted);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(67, 0, 255, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(0, 202, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 255, 222, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #0a0020 0%, #150040 25%, #1a0050 50%, #0d0030 75%, #050015 100%);
}

/* Casino pattern overlay - large icons */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Spade */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 C50 10 15 45 15 60 C15 75 30 80 50 65 C70 80 85 75 85 60 C85 45 50 10 50 10 Z M45 65 L45 85 L55 85 L55 65' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E"),
    /* Heart */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 88 C20 60 10 40 25 25 C40 10 50 25 50 25 C50 25 60 10 75 25 C90 40 80 60 50 88Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"),
    /* Diamond */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L90 50 L50 95 L10 50 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"),
    /* Club */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='35' r='20' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='30' cy='55' r='18' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='70' cy='55' r='18' fill='rgba(255,255,255,0.05)'/%3E%3Cpath d='M45 60 L45 90 L55 90 L55 60' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-position: 5% 20%, 85% 15%, 15% 75%, 75% 70%;
  background-size: 180px 180px, 200px 200px, 160px 160px, 190px 190px;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Additional casino elements */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Chip */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='6'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='4' stroke-dasharray='12 8'/%3E%3Ccircle cx='50' cy='50' r='15' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E"),
    /* Dice */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='10' y='10' width='80' height='80' rx='12' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='4'/%3E%3Ccircle cx='30' cy='30' r='8' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='70' cy='30' r='8' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='50' cy='50' r='8' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='30' cy='70' r='8' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='70' cy='70' r='8' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-position: 50% 85%, 92% 45%;
  background-size: 150px 150px, 130px 130px;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 10;
  padding: var(--space-3xl) var(--space-lg);
}

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

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

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  background: linear-gradient(90deg, #fff 0%, #00CAFF 25%, #00FFDE 50%, #00CAFF 75%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: 0.1em;
  filter: drop-shadow(0 0 30px rgba(0, 202, 255, 0.6)) drop-shadow(0 0 60px rgba(0, 255, 222, 0.4));
  position: relative;
  animation: hero-title-shine 4s linear infinite;
}

@keyframes hero-title-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #00CAFF 20%, #00FFDE 50%, #00CAFF 80%, transparent 100%);
  border-radius: 2px;
  animation: hero-underline 3s ease-in-out infinite;
}

@keyframes hero-underline {
  0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

.hero-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

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

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #4300FF 0%, #0065F8 100%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(67, 0, 255, 0.5);
}

.hero-cta .btn-primary:hover {
  border-color: #fff;
  box-shadow: 0 0 50px rgba(0, 202, 255, 0.8);
}

.hero-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hero image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Casino illustration */
.hero-illustration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Playing cards */
.hero-cards {
  position: relative;
  width: 200px;
  height: 280px;
}

.hero-card {
  position: absolute;
  width: 140px;
  height: 196px;
  background: linear-gradient(145deg, #fff 0%, #f0f0f0 100%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  font-weight: bold;
}

.hero-card::before {
  font-size: 2rem;
}

.hero-card::after {
  font-size: 2rem;
  align-self: flex-end;
  transform: rotate(180deg);
}

.hero-card-1 {
  left: 0;
  top: 40px;
  transform: rotate(-15deg);
  z-index: 1;
}

.hero-card-1::before,
.hero-card-1::after {
  content: 'A♠';
  color: #1a1a2e;
}

.hero-card-2 {
  left: 30px;
  top: 20px;
  transform: rotate(-5deg);
  z-index: 2;
}

.hero-card-2::before,
.hero-card-2::after {
  content: 'K♥';
  color: #e63946;
}

.hero-card-3 {
  left: 60px;
  top: 0;
  transform: rotate(8deg);
  z-index: 3;
}

.hero-card-3::before,
.hero-card-3::after {
  content: 'Q♦';
  color: #e63946;
}

/* Casino chips */
.hero-chips {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: -20px;
}

.hero-chip {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-chip::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.6);
}

.hero-chip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.hero-chip-1 {
  background: linear-gradient(145deg, #e63946 0%, #c1121f 100%);
  margin-right: -15px;
  z-index: 1;
}

.hero-chip-2 {
  background: linear-gradient(145deg, #2d6a4f 0%, #1b4332 100%);
  margin-right: -15px;
  z-index: 2;
}

.hero-chip-3 {
  background: linear-gradient(145deg, #1d3557 0%, #14213d 100%);
  z-index: 3;
}

/* Dice */
.hero-dice {
  position: absolute;
  top: 30px;
  right: 20px;
}

.hero-die {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #fff 0%, #e0e0e0 100%);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(15deg);
}

.hero-die::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    -14px -14px 0 #1a1a2e,
    14px -14px 0 #1a1a2e,
    -14px 14px 0 #1a1a2e,
    14px 14px 0 #1a1a2e;
}

/* Glowing orbs decoration */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-glow-1 {
  width: 200px;
  height: 200px;
  background: #ff6ec7;
  top: -50px;
  right: -50px;
}

.hero-glow-2 {
  width: 150px;
  height: 150px;
  background: #c74fd9;
  bottom: 0;
  left: 0;
}

/* Responsive hero */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 350px;
  }

  .hero-illustration {
    height: 300px;
    order: -1;
  }

  .hero-cards {
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    letter-spacing: 0.05em;
  }

  .hero-title::after {
    bottom: -5px;
    height: 2px;
  }

  .hero-text {
    font-size: var(--text-base);
  }

  .hero-image img {
    max-height: 280px;
  }

  .hero-illustration {
    height: 250px;
  }

  .hero-cards {
    transform: scale(0.65);
  }

  .hero-chip {
    width: 45px;
    height: 45px;
  }
}

/* ========== CATEGORY HERO ========== */
.hero-category {
  min-height: 400px;
}

.hero-category .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
}

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

.breadcrumbs-hero a,
.breadcrumbs-hero .breadcrumbs-separator {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-hero .breadcrumbs-current {
  color: #fff;
}

/* Category illustrations base */
.hero-illustration-games,
.hero-illustration-bonuses,
.hero-illustration-casino-reviews,
.hero-illustration-payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== GAMES ILLUSTRATION - Slot Machine ========== */
.illust-slot {
  position: relative;
  width: 200px;
  height: 260px;
}

.illust-slot-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 220px;
  background: linear-gradient(180deg, #2d1b4e 0%, #1a0a2e 100%);
  border-radius: 20px;
  border: 3px solid #00CAFF;
  box-shadow: 0 0 30px rgba(0, 202, 255, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.illust-slot-body::before {
  content: 'SLOT';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00FFDE, #00CAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 222, 0.5);
}

.illust-slot-screen {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 70px;
  background: #0a0015;
  border-radius: 10px;
  border: 2px solid #4300FF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: inset 0 0 20px rgba(67, 0, 255, 0.3);
}

.illust-slot-screen span {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00FFDE;
  text-shadow: 0 0 15px #00FFDE;
}

.illust-slot-lever {
  position: absolute;
  right: -25px;
  top: 80px;
  width: 15px;
  height: 80px;
  background: linear-gradient(90deg, #4300FF, #0065F8);
  border-radius: 8px;
}

.illust-slot-lever::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #00FFDE, #00CAFF);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 255, 222, 0.5);
}

/* ========== BONUSES ILLUSTRATION - Gift ========== */
.illust-bonus {
  position: relative;
  width: 200px;
  height: 260px;
}

.illust-gift {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 120px;
  background: linear-gradient(135deg, #4300FF 0%, #0065F8 100%);
  border-radius: 15px;
  border: 3px solid #00CAFF;
  box-shadow: 0 0 30px rgba(0, 202, 255, 0.3);
}

.illust-gift::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 35px;
  background: linear-gradient(135deg, #00CAFF 0%, #00FFDE 100%);
  border-radius: 10px;
}

.illust-gift::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 150px;
  background: linear-gradient(180deg, #00FFDE, #00CAFF);
  border-radius: 5px;
}

.illust-coins {
  position: absolute;
  bottom: 20px;
  right: 10px;
}

.illust-coins span {
  display: block;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  margin-bottom: -10px;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.illust-stars {
  position: absolute;
  top: 20px;
  left: 10px;
}

.illust-stars span {
  display: block;
  width: 20px;
  height: 20px;
  background: #00FFDE;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  margin-bottom: 10px;
  box-shadow: 0 0 10px #00FFDE;
}

.illust-stars span:nth-child(2) {
  width: 15px;
  height: 15px;
  margin-left: 25px;
}

.illust-stars span:nth-child(3) {
  width: 12px;
  height: 12px;
  margin-left: 10px;
}

/* ========== CASINO REVIEWS ILLUSTRATION ========== */
.illust-review {
  position: relative;
  width: 200px;
  height: 260px;
}

.illust-card-stack {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 15px;
  border: 3px solid #4300FF;
  box-shadow:
    -10px 10px 0 -3px #0a0015,
    -10px 10px 0 0 #00CAFF,
    -20px 20px 0 -3px #0a0015,
    -20px 20px 0 0 #00FFDE;
}

.illust-card-stack::before {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 900;
  color: #00CAFF;
  text-shadow: 0 0 20px rgba(0, 202, 255, 0.5);
}

.illust-magnifier {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 5px solid #00FFDE;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 222, 0.4);
}

.illust-magnifier::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -10px;
  width: 8px;
  height: 35px;
  background: linear-gradient(180deg, #00FFDE, #00CAFF);
  border-radius: 4px;
  transform: rotate(-45deg);
}

.illust-stars-rating {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.illust-stars-rating span {
  width: 25px;
  height: 25px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ========== PAYMENT METHODS ILLUSTRATION ========== */
.illust-payment {
  position: relative;
  width: 200px;
  height: 260px;
}

.illust-wallet {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 100px;
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
  border-radius: 15px;
  border: 3px solid #00CAFF;
  box-shadow: 0 0 25px rgba(0, 202, 255, 0.3);
}

.illust-wallet::before {
  content: '';
  position: absolute;
  top: 15px;
  right: -10px;
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #00FFDE, #00CAFF);
  border-radius: 8px;
}

.illust-credit-card {
  position: absolute;
  top: 50px;
  left: 20px;
  width: 100px;
  height: 65px;
  background: linear-gradient(135deg, #4300FF 0%, #0065F8 100%);
  border-radius: 10px;
  transform: rotate(-15deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.illust-credit-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10px;
  width: 30px;
  height: 25px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 5px;
}

.illust-credit-card::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 10px;
  right: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.illust-crypto {
  position: absolute;
  top: 40px;
  right: 15px;
}

.illust-crypto span {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
}

.illust-crypto span:first-child {
  background: linear-gradient(135deg, #F7931A, #FFB347);
  box-shadow: 0 0 20px rgba(247, 147, 26, 0.5);
}

.illust-crypto span:first-child::before {
  content: '₿';
  color: #fff;
}

.illust-crypto span:last-child {
  background: linear-gradient(135deg, #627EEA, #8B9FEF);
  box-shadow: 0 0 20px rgba(98, 126, 234, 0.5);
}

.illust-crypto span:last-child::before {
  content: 'Ξ';
  color: #fff;
}

/* Responsive category hero */
@media (max-width: 968px) {
  .hero-category .hero-illustration {
    height: 250px;
  }

  .illust-slot,
  .illust-bonus,
  .illust-review,
  .illust-payment {
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .hero-category {
    min-height: auto;
  }

  .hero-category .hero-illustration {
    height: 200px;
  }

  .illust-slot,
  .illust-bonus,
  .illust-review,
  .illust-payment {
    transform: scale(0.65);
  }
}

/* ========== TOP CASINOS SECTION ========== */
.casinos-section {
  padding: var(--space-3xl) 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(67, 0, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 101, 248, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a1a 0%, #0d0520 50%, #0a0a1a 100%);
  position: relative;
}

.casinos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 0, 255, 0.5) 50%, transparent 100%);
}

.casinos-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 202, 255, 0.3) 50%, transparent 100%);
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.casino-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(145deg, rgba(20, 10, 40, 0.9) 0%, rgba(10, 5, 25, 0.95) 100%);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  overflow: hidden;
  text-align: center;
}

.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--color-accent-rgb), 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.casino-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-accent-rgb), 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 202, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

/* Card header with rank and score */
.casino-card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm);
}

.casino-rank-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4300FF 0%, #0065F8 100%);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 800;
  color: #fff;
  box-shadow: 0 2px 8px rgba(67, 0, 255, 0.5);
}

.casino-score-badge {
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(0, 255, 222, 0.2) 0%, rgba(0, 202, 255, 0.2) 100%);
  border: 1px solid rgba(0, 255, 222, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #00FFDE;
}

/* Top 3 rank badges */
.casino-card[data-rank="1"] .casino-rank-badge {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.6);
}

.casino-card[data-rank="2"] .casino-rank-badge {
  background: linear-gradient(135deg, #E8E8E8 0%, #B8B8B8 100%);
  color: #333;
  box-shadow: 0 2px 12px rgba(200, 200, 200, 0.5);
}

.casino-card[data-rank="3"] .casino-rank-badge {
  background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%);
  box-shadow: 0 2px 12px rgba(205, 127, 50, 0.5);
}

/* Casino icon */
.casino-card-icon {
  width: 70px;
  height: 70px;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.casino-card-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.casino-card:hover .casino-card-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

/* Casino name */
.casino-card-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

/* Bonus text */
.casino-card-bonus {
  font-size: var(--text-xs);
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* Stars */
.casino-card-stars {
  font-size: var(--text-sm);
  color: #FFD700;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

/* Button */
.casino-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, #00CAFF 0%, #00FFDE 100%);
  color: #0a0a1a;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 202, 255, 0.3);
}

.casino-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 222, 0.5);
}

/* Responsive casino grid */
@media (max-width: 1200px) {
  .casino-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
  }

  .casino-card {
    padding: var(--space-md) var(--space-sm);
  }

  .casino-card-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 968px) {
  .casino-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .casino-card {
    padding: var(--space-md);
  }

  .casino-card-icon {
    width: 55px;
    height: 55px;
    margin-top: var(--space-md);
  }

  .casino-card-name {
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .casino-card {
    padding: var(--space-sm);
  }

  .casino-card-header {
    padding: var(--space-xs);
  }

  .casino-rank-badge {
    width: 24px;
    height: 24px;
    font-size: var(--text-xs);
  }

  .casino-score-badge {
    padding: 2px 6px;
    font-size: 10px;
  }

  .casino-card-icon {
    width: 45px;
    height: 45px;
  }

  .casino-card-bonus {
    font-size: 10px;
    padding: 2px 8px;
  }

  .casino-card-stars {
    font-size: var(--text-xs);
  }

  .casino-card-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
  }
}

/* ========== CATEGORIES SECTION ========== */
#categories {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 255, 222, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(67, 0, 255, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #0a0a1a 0%, #0f0a20 30%, #100a25 70%, #0a0a1a 100%);
}

#categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 222, 0.4) 50%, transparent 100%);
}

#categories::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 0, 255, 0.4) 50%, transparent 100%);
}

/* ========== TAGS SECTION ========== */
.tags-section {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(0, 202, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(67, 0, 255, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 255, 222, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a1a 0%, #080820 50%, #0a0a1a 100%);
}

.tags-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 202, 255, 0.4) 50%, transparent 100%);
}

.tags-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 222, 0.3) 50%, transparent 100%);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, rgba(20, 10, 40, 0.8) 0%, rgba(10, 5, 25, 0.9) 100%);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: var(--transition);
  min-height: 44px;
}

.tag-pill svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.tag-pill:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(67, 0, 255, 0.2) 0%, rgba(0, 202, 255, 0.15) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 202, 255, 0.2);
}

.tag-pill:hover svg {
  color: #00FFDE;
}

.tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 var(--space-xs);
  background: rgba(var(--color-accent-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
}

.tag-pill:hover .tag-count {
  background: rgba(0, 255, 222, 0.3);
  color: #00FFDE;
}

/* Large tags for high article counts */
.tag-pill[data-count]:hover {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 768px) {
  .tags-cloud {
    gap: var(--space-sm);
  }

  .tag-pill {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    min-height: 38px;
  }

  .tag-pill svg {
    width: 12px;
    height: 12px;
  }

  .tag-count {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* ========== SEO CONTENT SECTION ========== */
.seo-section {
  padding: var(--space-3xl) 0;
  position: relative;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(0, 101, 248, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 70%, rgba(0, 202, 255, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a1a 0%, #08081a 50%, #0a0820 100%);
}

.seo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 101, 248, 0.4) 50%, transparent 100%);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(67, 0, 255, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 255, 222, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a1a 0%, #0a0820 50%, #0d0525 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 0, 255, 0.4) 50%, transparent 100%);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

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

.form-label .required {
  color: #ff6b6b;
}

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

.form-actions .btn {
  width: 100%;
  gap: var(--space-sm);
}

.form-actions .btn svg {
  flex-shrink: 0;
}

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

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(67, 0, 255, 0.2) 0%, rgba(0, 202, 255, 0.2) 100%);
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-md);
}

.contact-info-icon svg {
  stroke: var(--color-accent);
}

.contact-info-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.contact-info-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Responsive contact form */
@media (max-width: 968px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1 1 calc(50% - var(--space-md));
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .contact-info-side {
    flex-direction: column;
  }

  .contact-info-card {
    flex: 1 1 100%;
  }
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--gradient-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-xl);
}

.seo-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid rgba(var(--color-accent-rgb), 0.2);
  background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent);
  margin: var(--space-xl) 0 var(--space-md);
}

.seo-content p {
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  text-align: justify;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .seo-content {
    padding: var(--space-lg);
  }

  .seo-content h2 {
    font-size: var(--text-xl);
  }

  .seo-content h3 {
    font-size: var(--text-base);
  }

  .seo-content p {
    font-size: var(--text-sm);
    text-align: left;
  }
}

/* ========== ALERT/MESSAGE ========== */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
}

.alert-success {
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.3);
  color: #00ff64;
}

.alert-error {
  background: rgba(255, 0, 100, 0.1);
  border: 1px solid rgba(255, 0, 100, 0.3);
  color: #ff0064;
}

/* ========== SKELETON LOADER ========== */
.skeleton {
  background: linear-gradient(90deg,
    var(--color-bg-card) 25%,
    var(--color-bg-hover) 50%,
    var(--color-bg-card) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========== COMPACT CASINO CARDS ========== */
.casinos-section-compact {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 202, 255, 0.02) 50%, transparent 100%);
}

.casino-compact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.casino-compact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(var(--color-accent-rgb), 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  aspect-ratio: 1;
  justify-content: center;
  gap: var(--space-sm);
}

.casino-compact-card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.casino-compact-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
  border-radius: 50%;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-bg);
}

.casino-compact-card {
  position: relative;
}

.casino-compact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid;
  border-radius: var(--radius-lg);
}

.casino-compact-icon span {
  font-size: var(--text-xl);
  font-weight: 800;
}

.casino-compact-info {
  width: 100%;
}

.casino-compact-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.casino-compact-bonus {
  font-size: var(--text-xs);
  color: var(--color-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.casino-compact-score {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 202, 255, 0.2), rgba(0, 255, 222, 0.2));
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
}

.casino-compact-btn {
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, #00CAFF, #00FFDE);
  border-radius: var(--radius);
  color: #0a0a1a;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 202, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-compact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 202, 255, 0.5);
  background: linear-gradient(135deg, #00FFDE, #00CAFF);
}

/* ========== SEO TEXT SECTION ========== */
.seo-text-section {
  background: rgba(0, 0, 0, 0.2);
}

.seo-text-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.seo-text-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(var(--color-accent-rgb), 0.3);
}

.seo-text-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.seo-text-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ========== RESPONSIVE COMPACT CASINO ========== */
@media (max-width: 1200px) {
  .casino-compact-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
  }

  .casino-compact-card {
    padding: var(--space-md);
  }

  .casino-compact-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 992px) {
  .casino-compact-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .casino-compact-name {
    font-size: var(--text-xs);
  }
}

@media (max-width: 768px) {
  .casino-compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .casino-compact-card {
    padding: var(--space-sm);
  }

  .casino-compact-rank {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 5px;
    left: 5px;
  }

  .casino-compact-icon {
    width: 40px;
    height: 40px;
  }

  .casino-compact-icon span {
    font-size: var(--text-base);
  }

  .casino-compact-score {
    width: 30px;
    height: 30px;
    font-size: var(--text-xs);
  }
}

@media (max-width: 480px) {
  .casino-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
