/* ============================================================
   BLOCKS.CSS — Header, Footer, Hero, Page Sections
   elook.org | Casino Affiliate | Production v1.0
   ============================================================ */

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: rgba(15, 12, 41, 0.97);
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
  box-shadow: 0 1px 20px rgba(79, 70, 229, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6D28D9, #4F46E5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-inverse);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.4);
}

.site-logo__text {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.site-logo__text span {
  color: #a78bfa;
}

/* Primary navigation */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-primary__item {
  position: relative;
}

.nav-primary__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav-primary__link:hover,
.nav-primary__item:hover > .nav-primary__link {
  color: #c4b5fd;
  background-color: rgba(109, 40, 217, 0.15);
}

.nav-primary__link[aria-current="page"] {
  color: #a78bfa;
  font-weight: var(--weight-semi);
}

.nav-primary__arrow {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.nav-primary__item:hover .nav-primary__arrow {
  transform: rotate(180deg);
}

/* Dropdown */
/* nav-dropdown replaced by nav-mega */

.nav-dropdown__link:hover {
  color: #c4b5fd;
  background-color: rgba(109, 40, 217, 0.2);
}

.nav-dropdown__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(109, 40, 217, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.nav-dropdown__sep {
  border: none;
  border-top: 1px solid rgba(79, 70, 229, 0.2);
  margin: var(--space-2) 0;
}

/* Header right side */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switch {
  display: flex;
  border: 1px solid rgba(79, 70, 229, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lang-switch__btn {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all var(--transition-fast);
  line-height: 1;
}

.lang-switch__btn:hover {
  color: #c4b5fd;
}

.lang-switch__btn--active {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.lang-switch__btn--active:hover {
  color: var(--color-text-inverse);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(79, 70, 229, 0.4);
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background-color: rgba(15, 12, 41, 0.99);
  overflow-y: auto;
  padding: var(--space-4);
  flex-direction: column;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
  margin-bottom: var(--space-4);
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  background: none;
}

.mobile-nav__section {
  margin-bottom: var(--space-5);
}

.mobile-nav__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(167, 139, 250, 0.6);
  margin-bottom: var(--space-2);
  padding: 0 var(--space-2);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav__link:hover {
  background-color: rgba(109, 40, 217, 0.2);
  color: #c4b5fd;
}

@media (max-width: 1023px) {
  .nav-primary { display: none; }
  .hamburger { display: flex; }
  .header-right .btn { display: none; }
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */

.hero {
  padding-block: var(--space-16) var(--space-12);
  background-color: var(--color-bg-dark);
  background-image: url('../images/hero/hero-main.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 12, 41, 0.92) 0%,
    rgba(15, 12, 41, 0.75) 55%,
    rgba(15, 12, 41, 0.20) 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: #a78bfa;
  background-color: rgba(109, 40, 217, 0.2);
  border: 1px solid rgba(109, 40, 217, 0.4);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-sans);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: var(--space-5);
  max-width: 14ch;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--leading-normal);
  max-width: 50ch;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--weight-medium);
}

.hero__trust-icon {
  color: #34d399;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .hero {
    padding-block: var(--space-10) var(--space-8);
    background-position: 80% center;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(15, 12, 41, 0.96) 0%,
      rgba(15, 12, 41, 0.90) 100%
    );
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.7);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__trust {
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-3xl);
  }
}


/* ════════════════════════════════════════
   CASINO LIST SECTION
════════════════════════════════════════ */

.casino-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.casino-list__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


/* ════════════════════════════════════════
   TRUST / METHODOLOGY BLOCK
════════════════════════════════════════ */

.trust-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.trust-item {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.trust-item__icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}

.trust-item__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semi);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.trust-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  max-width: none;
}

@media (max-width: 1023px) {
  .trust-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-block__grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */

.cta-banner {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #4F46E5 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.3) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.cta-banner__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  max-width: 48ch;
  margin-inline: auto;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .cta-banner {
    padding: var(--space-10) var(--space-6);
  }

  .cta-banner__title {
    font-size: var(--text-3xl);
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* ════════════════════════════════════════
   REVIEW HEADER (Casino review page)
════════════════════════════════════════ */

.review-header {
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg) 70%);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}

.review-header__top {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}

.review-header__logo {
  width: 120px;
  height: 80px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: var(--space-2);
}

.review-header__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-header__logo-placeholder {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.review-header__info {
  flex: 1;
}

.review-header__name {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.review-header__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.review-header__updated {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-header__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Review sidebar (sticky on desktop) */
.review-sidebar {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.review-sidebar__logo {
  width: 80px;
  height: 56px;
  background-color: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  overflow: hidden;
  padding: var(--space-2);
}

.review-sidebar__rating {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.review-sidebar__score {
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: 1;
}

.review-sidebar__max {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.review-sidebar__bonus {
  font-size: var(--text-lg);
  font-weight: var(--weight-semi);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.review-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.review-sidebar__tc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  line-height: var(--leading-normal);
}

@media (max-width: 767px) {
  .review-header__top {
    flex-direction: column;
    gap: var(--space-4);
  }

  .review-header__name {
    font-size: var(--text-3xl);
  }

  .review-header__actions {
    flex-direction: column;
  }

  .review-header__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-brand__mark {
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
}

.footer-brand__name {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse);
}

.footer-brand__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(255,255,255,0.55);
  max-width: 30ch;
}

.footer-col__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-4);
}

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

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1;
}

.footer-links a:hover {
  color: var(--color-text-inverse);
}

.footer-bottom {
  padding-block: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.75);
}

.footer-disclaimer {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: var(--leading-normal);
  max-width: none;
}

.footer-company {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  line-height: var(--leading-normal);
  max-width: none;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

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

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

@media (max-width: 767px) {
  .site-footer {
    padding-top: var(--space-10);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-brand {
    grid-column: auto;
  }
}


/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.text-primary   { color: var(--color-primary); }
.text-accent    { color: var(--color-accent); }
.text-muted     { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }

.font-bold   { font-weight: var(--weight-bold); }
.font-semi   { font-weight: var(--weight-semi); }
.font-medium { font-weight: var(--weight-medium); }

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-8);
}

/* ════════════════════════════════════════
   CASINO LOGO IMAGES
════════════════════════════════════════ */

.casino-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-2);
}

.casino-card__logo--glory {
  background: linear-gradient(135deg, #1E1B4B, #312E81);
  border: 1px solid rgba(79, 70, 229, 0.3) !important;
}

.casino-card__logo--banger {
  background: linear-gradient(135deg, #0C0A1E, #1a1035);
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

/* ════════════════════════════════════════
   PROMO BANNER BLOCK
════════════════════════════════════════ */

.promo-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.promo-banner img,
.promo-banner svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════════════════
   SECTION BG SOFT — updated tint
════════════════════════════════════════ */

.section--bg-soft {
  background: linear-gradient(180deg, #F5F5FF 0%, #F0F0FF 100%);
}

/* ════════════════════════════════════════
   VERDICT BOX — updated gradient
════════════════════════════════════════ */

.verdict-box {
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #E0E7FF 100%);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

/* ════════════════════════════════════════
   REVIEW HEADER — updated gradient
════════════════════════════════════════ */

.review-header {
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #E0E7FF 40%, var(--color-bg) 70%);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}

/* ════════════════════════════════════════
   RATING BAR — violet fill
════════════════════════════════════════ */

.rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #6D28D9, #4F46E5);
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

/* ════════════════════════════════════════
   STEP LIST — violet numbers
════════════════════════════════════════ */

.step-list__number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

/* ════════════════════════════════════════
   ACCORDION — violet active state
════════════════════════════════════════ */

.accordion__trigger[aria-expanded="true"] {
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #E0E7FF 100%);
}

/* ════════════════════════════════════════
   TRUST ITEM — violet icon bg
════════════════════════════════════════ */

.trust-item {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.trust-item:hover {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   
/* ═══════════════════════════════════════════
   MEGA-MENU — 3-level dropdown nav
   Fixed: proper transform, z-index stacking
   ═══════════════════════════════════════════ */

/* Nav primary wrapper */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary__item {
  position: relative;
}

/* Base mega: hidden */
.nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  /* Use margin-left trick instead of transform to avoid conflict */
  transform: translateY(10px);
  margin-left: -280px; /* half of min-width=560px to center */
  background: rgba(15, 12, 41, 0.98);
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  gap: 1.5rem;
  min-width: 560px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(79, 70, 229, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Small mega (single-column dropdowns) */
.nav-mega--sm {
  min-width: 240px;
  left: 0;
  margin-left: 0;
  transform: translateY(10px);
}

/* Show mega on hover */
.nav-primary__item.has-mega:hover > .nav-mega,
.nav-primary__item.has-mega:focus-within > .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* Mega column */
.nav-mega__col {
  display: flex;
  flex-direction: column;
  min-width: 148px;
  flex: 1;
}

.nav-mega__col--brands {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 1.25rem;
}

/* Column heading */
.nav-mega__heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 0.6rem 0;
  padding: 0;
}

/* Mega link */
.nav-mega__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}

.nav-mega__link:hover {
  background: rgba(79, 70, 229, 0.15);
  color: #c4b5fd;
}

.nav-mega__link--all {
  color: #818cf8;
  font-weight: 600;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.5rem;
}

.nav-mega__icon {
  font-size: 13px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* Arrow rotation on hover */
.nav-primary__item.has-mega:hover .nav-primary__arrow {
  transform: rotate(180deg);
}

.nav-primary__arrow {
  font-size: 0.6rem;
  transition: transform 0.15s;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   MOBILE NAV — details/summary accordion
   ═══════════════════════════════════════════ */

.mobile-nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__group {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav__summary {
  padding: 0.875rem 0.75rem;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.mobile-nav__summary::-webkit-details-marker { display: none; }
.mobile-nav__summary::after {
  content: '▾';
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.2s;
}
details[open] .mobile-nav__summary::after { transform: rotate(180deg); }

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  padding: 0 0 0.5rem 1rem;
  gap: 0;
}

.mobile-nav__bottom {
  padding: 0.75rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  display: block;
  padding: 0.5rem 0.5rem;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.1s;
}
.mobile-nav__link:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* ═══════════════════════════════════════════
   RESPONSIBLE GAMBLING STRIP — footer only
   Hidden everywhere else
   ═══════════════════════════════════════════ */

/* Kill any top-of-page RG banners */
.rg-banner-top,
.responsible-gambling-bar,
.rg-warning-top {
  display: none !important;
}

/* Footer RG strip */
.rg-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.rg-strip__icon { font-size: 16px; flex-shrink: 0; }
.rg-strip__text { font-size: 13px; color: rgba(255,255,255,0.65); flex: 1; }
.rg-strip__link { font-size: 13px; color: #ca8a04; font-weight: 600; text-decoration: none; }
.rg-strip__link:hover { text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  background: rgba(15, 12, 41, 0.98);
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; flex: 1; }
.cookie-banner a { color: #818cf8; }
