/**************************************************
 * REVIEW PAGES — TopBonusTips (2025)
 **************************************************/

 
/* === HERO inherits global site style === */
.review-hero {
  background: inherit;
  color: inherit;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  padding: clamp(32px, 5vw, 64px) 16px;
}

.review-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 880px) {
  .review-hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}

/* HERO LOGO BOX – ANPASSAD TILL LOGGAN */

.review-logo-box {
  width: 220px;
  height: 220px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(10, 13, 20, 1));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: all 0.25s ease;
  margin-bottom: 20px;
}

.review-logo-box:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

/* Själva loggan – centreras och skalar snyggt */
.review-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.review-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  margin-bottom: 8px;
}
.review-sub {
  color: #e8eef7;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .95;
  margin-bottom: 18px;
}

.review-rating { margin-bottom: 20px; }
.rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffd666;
}
.rating-score span { font-size: 1rem; opacity: .8; margin-left: 2px; }
.rating-bar {
  width: 180px;
  height: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}
.rating-fill {
  height: 100%;
  background: linear-gradient(90deg,#ffcc00,#ff9900);
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #c4c9d4;
  font-size: .95rem;
}

.review-btn {
  display: inline-block;
  background: #ff9900;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(255,153,0,.3);
  transition: 0.25s ease;
}
.review-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(255,153,0,.4);
}

.review-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mini-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  color: #e8eef7;
}
.mini-kicker {
  display: inline-block;
  font-size: .8rem;
  opacity: .8;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
}
.mini-list, .tags {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .95rem;
}
.mini-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 4px 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tags li {
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .9rem;
}
.muted { opacity: .7; font-size: .8rem; }

/**************************************************
 * REVIEW NAVIGATION BAR
 **************************************************/
.review-nav {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 70px;
  z-index: 900;
}

.review-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-nav-list li {
  margin: 0;
}

.review-nav-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e8eef7;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px 8px 0 0;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  position: relative;
}

.review-nav-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffcc00;
}

.review-nav-list li.active a {
  background: rgba(255, 255, 255, 0.12);
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.review-nav-list i {
  font-size: 1rem;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 700px) {
  .review-nav-list {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 8px;
    scrollbar-width: none;
  }
  .review-nav-list::-webkit-scrollbar {
    display: none;
  }
  .review-nav-list a {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 10px 14px;
  }
}

/**************************************************
 * INLINE REVIEW NAV (desktop) + MOBILE NAV
 **************************************************/

/* Wrapper för rubrik + inline-nav */
.review-hero-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Desktop inline nav */
.review-inline-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-inline-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #e8eef7;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.review-inline-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: #ffcc00;
}
.review-inline-nav .active a {
  background: rgba(255,255,255,0.15);
  border-color: #ffcc00;
  color: #ffcc00;
}


/* RESPONSIVE SWITCH */
@media (max-width: 900px) {
  .review-inline-nav { display: none; }
  .review-nav-mobile { display: block; }
}

/* Växlande mini-cards */
.mini-card {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.mini-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payments-list li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}
.payments-list li:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px 10px;
  margin: 10px 0 14px;
}
.provider-grid span {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.88rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.provider-grid span:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

/* === FIX: prevent page jump when switching cards === */
.review-hero-right {
  min-height: 420px; /* justera efter hur höga boxarna är */
  position: relative;
}

.mini-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.review-hero-right {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 450px;
}

.mini-card {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mini-card.active {
  display: block;
  opacity: 1;
}

/* === TRANSPARENT HERO FIX (applies to all pages) === */
.hero,
.review-hero {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Gör även inre delar transparenta om något ligger kvar */
.hero-inner,
.review-hero-inner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Behåll läsbar text */
.hero .hero-title,
.hero .hero-sub,
.review-hero .review-title,
.review-hero .review-sub {
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Liten extra glow från bakgrunden (valfritt) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,204,0,0.05), transparent 70%);
  z-index: -1;        /* styles.css body::before ligger på -2 */
  pointer-events: none;
}

/* === REVIEW CONTENT SECTION === */
.review-content {
  max-width: 1200px;
  margin: 70px auto 100px;
  padding: 0 18px;
  color: #e8eef7;
  font-size: 1rem;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.review-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.review-content p {
  margin-bottom: 22px;
}

.review-content strong {
  color: #ffcc00;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 800px) {
  .review-content {
    margin: 50px 12px 80px;
    padding: 20px 14px;
  }
  .review-content h2 {
    font-size: 1.5rem;
  }
}

.inline-link {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 204, 0, 0.4);
  transition: all 0.25s ease;
}

.inline-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.bonus-details {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  line-height: 1.7;
  color: #e8eef7;
}

.bonus-details li {
  margin-bottom: 8px;
}

.inline-link {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 204, 0, 0.4);
  transition: all 0.25s ease;
}

.inline-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.payment-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  line-height: 1.7;
  color: #e8eef7;
}

.payment-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-list i {
  color: #00c853; /* fräsch grön ton */
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 200, 83, 0.25));
}

.kyc-list, .kyc-tips {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  line-height: 1.7;
  color: #e8eef7;
}

.kyc-list li, .kyc-tips li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kyc-list i, .kyc-tips i {
  color: #00c853; /* fräsch grön ton */
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 200, 83, 0.25));
}

.review-content h3 {
  font-size: 1.3rem;
  margin-top: 35px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* FAQ styling (add to the bottom of review.css) */
.faq .faq-list {
  display: grid;
  gap: 12px;
}
.faq details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq details[open] {
  border-color: #ffcc00;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-a {
  padding: 10px 2px 2px 32px;
  color: #e8eef7;
  line-height: 1.65;
}
.faq summary i {
  color: #00c853;            /* subtle green accent */
  width: 20px; text-align: center; flex-shrink: 0;
  filter: drop-shadow(0 0 3px rgba(0,200,83,.25));
}
.faq a.inline-link {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,204,0,.4);
  transition: all .25s ease;
}
.faq a.inline-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

/**************************************************
 * === MOBILFIX FÖR REVIEW HERO (LOGGA + RATING + ALIGNMENT)
 **************************************************/

@media (max-width: 880px) {

  /* Centrera allt i vänstra delen */
  .review-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

/* Mobil: något mindre men samma proportioner */
@media (max-width: 880px) {
  .review-logo-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 16px auto;
    padding: 5px;
  }
}

  /* Titel och text centrerad */
  .review-title,
  .review-sub {
    text-align: center;
  }

  /* Rating-score centrerad */
  .review-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rating-bar {
    width: 160px;
    margin: 6px auto 0 auto;
  }

  /* Lista under loggan centrerad */
  .trust-points {
    justify-content: center;
    text-align: center;
  }

  /* Knappar centrerade */
  .review-btn {
    display: inline-block;
    margin: 12px auto;
  }
}

/**************************************************
 * === FIX: MINI-CARD SWITCH FUNGERAR PÅ MOBIL
 **************************************************/

/* Låt endast aktiva mini-cards visas */
.review-hero-right {
  position: relative;
  min-height: 440px;
}

.mini-card {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.25s ease;
}

.mini-card.active {
  display: block;
  opacity: 1;
}

/* Gör mobilnavigeringen tydligare */
.review-nav-mobile {
  display: block;
  position: sticky;
  top: 70px;
  background: rgba(20, 20, 25, 0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  z-index: 900;
}

.review-nav-list {
  display: flex;
  overflow-x: auto;
  gap: 4px;
  padding: 8px;
  list-style: none;
  scrollbar-width: none;
}

.review-nav-list::-webkit-scrollbar {
  display: none;
}

.review-nav-list li {
  flex: 0 0 auto;
}

.review-nav-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8eef7;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.review-nav-list li.active a {
  background: rgba(255,255,255,0.18);
  color: #ffcc00;
  border-color: #ffcc00;
}

.review-nav-list a:hover {
  color: #ffcc00;
  background: rgba(255,255,255,0.12);
}


@media (max-width: 900px) {
  .review-inline-nav { display: none; }
  .review-nav-mobile-wrapper {
    display: flex;
    align-items: center;
    position: sticky;
    top: 70px;
    background: rgba(15, 15, 20, 0.95);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    z-index: 999;
  }

  .review-nav-mobile {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .review-nav-mobile::-webkit-scrollbar { display: none; }

  .review-nav-list {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    min-width: max-content;
  }

  .review-nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e8eef7;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.25s ease;
  }

  .review-nav-list li.active a {
    background: rgba(255,255,255,0.18);
    border-color: #ffcc00;
    color: #ffcc00;
  }

  .review-nav-list a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffcc00;
  }

  .scroll-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    padding: 8px 10px;
    cursor: pointer;
    transition: 0.25s ease;
  }
  .scroll-btn:hover {
    color: #ffcc00;
    transform: scale(1.15);
  }
}

/* === MOBILE REVIEW NAV ABOVE CARDS (WITH WORKING ARROWS) === */
.review-nav-mobile-wrapper {
  display: none;
}

@media (max-width: 900px) {
  .review-inline-nav { display: none; }


  .review-nav-mobile {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  .review-nav-mobile::-webkit-scrollbar { display: none; }

  .review-nav-list {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 8px 2px;
    min-width: max-content;
  }

  .review-nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e8eef7;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
  }

  .review-nav-list li.active a {
    background: rgba(255,255,255,0.18);
    border-color: #ffcc00;
    color: #ffcc00;
  }

  .review-nav-list a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffcc00;
  }

  .scroll-btn {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 20;
  }

  .scroll-btn:hover {
    background: rgba(255,204,0,0.25);
    border-color: #ffcc00;
    color: #ffcc00;
    transform: scale(1.1);
  }

  /* gör plats så korten inte hamnar för nära menyn */
  .review-hero-right {
    position: relative;
    padding-top: 80px;
  }
}

/* === CONSOLIDATED: MINI-CARDS (en version) === */
.review-hero-right {
  position: relative;
  min-height: 450px;
}
.mini-card {
  position: absolute;
  inset: 0 auto auto 0; /* top:0; left:0 */
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.mini-card.active {
  display: block;
  opacity: 1;
}

/* === CONSOLIDATED: MOBILE NAV + ARROWS (enda källan) === */
@media (max-width: 900px) {
  .review-inline-nav { display: none; }

  .review-nav-mobile-wrapper {
    position: sticky;
    top: 70px;
    display: flex;
    align-items: center;
    background: rgba(15,15,20,0.95);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    z-index: 999;
  }

  /* Viktigt: låt UL vara scrollbaren, inte nav:et */
  .review-nav-mobile { position: relative; flex: 1; }

  .review-nav-list {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 10px 44px;      /* utrymme för pilarna */
    min-width: max-content;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .review-nav-list::-webkit-scrollbar { display: none; }
  .review-nav-list li { flex: 0 0 auto; }
  .review-nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e8eef7;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    transition: all .25s ease;
  }
  .review-nav-list li.active a {
    background: rgba(255,255,255,0.18);
    border-color: #ffcc00;
    color: #ffcc00;
  }
  .review-nav-list a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffcc00;
  }

  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.55);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: all .25s ease;
  }
  .scroll-btn.left  { left: 6px; }
  .scroll-btn.right { right: 6px; }
  .scroll-btn:hover {
    background: rgba(255,204,0,0.25);
    border-color: #ffcc00;
    color: #ffcc00;
    transform: translateY(-50%) scale(1.08);
  }
}

@media (min-width: 901px) {
  .review-inline-nav {
    position: relative;
    z-index: 5000;
    pointer-events: auto;
  }
}

/* ==== MOBILE REVIEW NAV (≤900px) ==== */
@media (max-width: 900px) {
  /* Dölj desktop-nav på mobil */
  .review-inline-nav { display: none !important; }

  .review-mobile-nav {
    position: sticky;           /* följer med när man scrollar */
    bottom: 0;
    z-index: 6000;
    backdrop-filter: blur(8px);
    background: rgba(15,15,20,0.85);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: env(safe-area-inset-bottom, 0); /* iPhone notch */
  }

  .review-mobile-nav ul {
    margin: 0;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0));
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 rader x 3 kolumner */
    gap: 8px;
  }

  .review-mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 10px 8px;
    border-radius: 12px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e8eef7;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }

  .review-mobile-nav a i {
    font-size: 16px;
  }

  .review-mobile-nav li.active a,
  .review-mobile-nav a:focus-visible {
    background: rgba(255,255,255,0.16);
    border-color: #ffcc00;
    color: #ffcc00;
  }

  .review-mobile-nav a:active {
    transform: translateY(1px) scale(0.98);
  }
}

/* ==== DESKTOP (≥901px): visa desktop-nav, dölj mobil-nav ==== */
@media (min-width: 901px) {
  .review-mobile-nav { display: none !important; }

  /* se till att desktop-nav ligger över annat */
  .review-inline-nav {
    position: relative !important;
    z-index: 5000 !important;
    pointer-events: auto !important;
  }
}

/* ==== PROVIDERS GRID (collapsible) ==== */
.providers-wrap {
  position: relative;
}

/* Snyggt, responsivt chip-grid */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.provider-grid > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8eef7;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* Collapsed-läge: begränsa höjd + fade i botten */
.providers-wrap:not(.expanded) .provider-grid {
  max-height: 290px;           /* mobil */
  overflow: hidden;
}

@media (min-width: 600px) {
  .providers-wrap:not(.expanded) .provider-grid { max-height: 360px; }
}
@media (min-width: 900px) {
  .providers-wrap:not(.expanded) .provider-grid { max-height: 420px; }
}

/* Fade-overlay när det finns mer att visa */
.providers-wrap:not(.expanded)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 44px;       /* lämna plats för knappen */
  height: 64px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(15,15,20,0) 0%, rgba(15,15,20,0.92) 100%);
}

/* Action-rad + knapp */
.providers-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.btn-toggle-providers {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #e8eef7;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .1s ease;
}
.btn-toggle-providers:hover {
  background: rgba(255,255,255,0.16);
  border-color: #ffcc00;
  color: #ffcc00;
}
.btn-toggle-providers:active { transform: translateY(1px); }

/* När allt är expanderat: ta bort fade */
.providers-wrap.expanded::after { display: none; }


/* behåll “endast aktiv synlig” så sidan inte blir lång */
.mini-card { display: none !important; opacity: 0 !important; }
.mini-card.active { display: block !important; opacity: 1 !important; }

/* om du har sticky mobilnav ovanför, säkra offset för ankar-scroll */
section[id], .mini-card[id] { scroll-margin-top: 72px; }


/* === TIGHTEN: ta bort glipan mellan knappar och kort (mobil) === */
@media (max-width: 900px) {
  .review-hero-right {
    padding-top: 0 !important;
  }
  /* behåll offset när man klickar på knapparna så rubriken inte hamnar under menyn */
  .mini-card[id] { scroll-margin-top: 72px; }
}

/* === FAQ bottom-edge fix === */
.faq details:last-of-type[open] {
  margin-bottom: 16px; /* skapar luft under sista öppnade frågan */
  padding-bottom: 16px; /* gör att linjen längst ned syns */
  border-bottom: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* === FINAL FAQ BOTTOM BORDER FIX === */
.faq details:last-of-type[open] {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border: 1px solid #ffcc00 !important; /* tvingar hela ramen orange */
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* === FINAL FIX: Keep last FAQ shadow visible === */
.review-content.faq,
.review-content .faq {
  margin-bottom: 0;
  padding-bottom: 24px;
  border-radius: 16px;
  position: relative;
  overflow: visible; /* låter sista öppnade frågans skugga synas */
}

.faq .faq-list {
  display: grid;
  gap: 12px;
  overflow: hidden; /* håller inre element rundade men låter skugga synas */
  border-radius: 14px;
  padding-bottom: 6px;
}

.faq details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq details[open] {
  border-color: #ffcc00;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.faq details:last-of-type {
  margin-bottom: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.mini-card.active .mini-kicker {
  color: #fff !important; /* vit text */
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); /* ger djup och bättre läsbarhet */
}

.other-reviews {
  margin: 60px auto;
  padding: 0 20px 40px;
  max-width: 1100px;
  text-align: center;
}

.other-reviews h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 25px;
}

.other-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.casino-card.small {
  background: #1e2028;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #2f323d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card.small:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.casino-card.small .logo-section img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.casino-card.small .casino-name {
  color: #fff;
  font-size: 1.1rem;
  margin: 8px 0 4px;
}

.casino-card.small p {
  color: #ccc;
  font-size: 0.9rem;
}

.casino-card.small .play-btn {
  display: inline-block;
  background: #ff9f00;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.3s ease;
}

.casino-card.small .play-btn:hover {
  background: #ffb733;
}

/* make Trustly icon clearly visible + en punkt per rad */
.trust-points {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.trust-points li {
  display: flex;          /* <– ändrad från inline-flex */
  align-items: center;
  gap: 8px;
  line-height: 1.25;
  width: 100%;            /* tvingar varje li att ta full rad */
  margin-bottom: 4px;     /* mellanrum mellan raderna */
}

.icon-pay {
  height: 16px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin-right: 2px;
  filter: drop-shadow(0 0 2px rgba(0,0,0,.4));
}

@media (max-width: 520px) {
  .icon-pay { height: 24px; }
}

.review-meta {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.affiliate-disclosure {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 8px;
}

/* =========================
   MULTI-BONUS inside .mini-card
   ========================= */

#card-bonus .bonus-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 10px 0 6px;
}

#card-bonus .bonus-tab{
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #e8eef7;
  font-weight: 800;
  cursor:pointer;
  line-height: 1;
}

#card-bonus .bonus-tab.is-active{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}

#card-bonus .bonus-panel{ display:none; margin-top: 8px; }
#card-bonus .bonus-panel.is-active{ display:block; }

#card-bonus .bonus-title{
  margin: 6px 0 10px;
  font-size: 1.02rem;
  color: #fff;
}

/* Bonus code row */
#card-bonus .mini-code-row strong.mini-code{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

#card-bonus .mini-copy{
  border-radius: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #e8eef7;
  font-weight: 800;
  cursor:pointer;
  line-height: 1;
}
#card-bonus .mini-copy:active{ transform: translateY(1px); }

/* Terms dropdown */
#card-bonus .mini-terms{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}

#card-bonus .mini-terms summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight: 800;
  color: #fff;
}
#card-bonus .mini-terms summary::-webkit-details-marker{ display:none; }

#card-bonus .mini-chev{
  width:10px; height:10px;
  border-right:2px solid rgba(255,255,255,.7);
  border-bottom:2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
#card-bonus .mini-terms[open] .mini-chev{ transform: rotate(-135deg); }

#card-bonus .mini-terms-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(232,238,247,.9);
}

/* Other reviews – force consistent 3-column layout on desktop */
.other-reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Prevent cards from forcing wrap */
.other-reviews-grid .casino-card{
  width: auto;
  max-width: 100%;
}

/* Responsive breakpoints */
@media (max-width: 900px){
  .other-reviews-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .other-reviews-grid{
    grid-template-columns: 1fr;
  }
}

/* === FIX: FAQ section should ALWAYS match other review-content widths === */
.review-content.faq{
  width: 100%;
  box-sizing: border-box;
}

/* Make inner FAQ elements always stretch full width */
.review-content.faq .faq-list,
.review-content.faq details{
  width: 100%;
  box-sizing: border-box;
}

/* Safety: if any global CSS makes details inline/inline-block */
.review-content.faq details{
  display: block;
}

/* ===== Green CTA Button (High CTR) ===== */
.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #24d48c, #1fc77a);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(31, 199, 122, 0.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* Hover = klicksignal */
.review-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 30px rgba(31, 199, 122, 0.45);
}

/* Active = tryckkänsla */
.review-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(31, 199, 122, 0.35);
}

@media (max-width: 768px) {
  .review-btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 17px;
  }
}

/**************************************************
 * OTHER REVIEWS — make logos bigger + nicer text box
 **************************************************/
.other-reviews .other-reviews-grid .casino-card.small{
  align-items: center;
  gap: 14px;
}

.other-reviews .other-reviews-grid .casino-card.small .logo-wrapper{
  width: 190px;              /* större logo-box */
  height: 96px;
  flex: 0 0 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

.other-reviews .other-reviews-grid .casino-card.small .logo-section{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-reviews .other-reviews-grid .casino-card.small .logo-section img{
  max-width: 200px !important;   /* själva loggan större */
  max-height: 150px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

/* Textbox / bonus-text */
.other-reviews .other-reviews-grid .casino-card.small .info-section{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px 14px;
}

.other-reviews .other-reviews-grid .casino-card.small .info-section .casino-name{
  margin-bottom: 6px;
}

.other-reviews .other-reviews-grid .casino-card.small .info-section p{
  margin: 0;
  color: rgba(245,247,250,0.92);
  line-height: 1.4;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;   /* max 3 rader */
  overflow: hidden;
}

/* Mobil: lite mindre men fortfarande större än innan */
@media (max-width: 560px){
  .other-reviews .other-reviews-grid .casino-card.small .logo-wrapper{
    width: 160px;
    height: 86px;
    flex-basis: 160px;
  }
  .other-reviews .other-reviews-grid .casino-card.small .logo-section img{
    max-width: 140px !important;
    max-height: 64px !important;
  }
}

/* === OTHER REVIEWS: remove orange bonus box so text is free === */
.other-reviews-grid .casino-card.small .info-section .casino-name + p{
  display: block !important;
  min-height: auto !important;
  padding: 0 !important;
  margin: 6px 0 10px !important;

  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  font-weight: 600 !important;
  letter-spacing: 0 !important;
  color: rgba(245,247,250,0.92) !important;
  text-align: left !important;
}

/* === FIX: Center FAQ section on mobile === */
@media (max-width: 800px) {
  section.review-content.faq {
    /* istället för margin: 50px 12px 80px */
    margin: 50px auto 80px !important;
    width: calc(100% - 24px) !important; /* 12px padding på vardera sida */
    max-width: 1200px;                  /* samma som övriga sektioner */
    box-sizing: border-box;
  }

  /* Säkerhet: allt inuti ska följa samma bredd */
  section.review-content.faq .faq-list,
  section.review-content.faq details {
    width: 100%;
    box-sizing: border-box;
  }
}

.payout-mini { padding-top: 4px; }
.payout-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.payout-row:last-of-type { border-bottom: none; }
.tiny { font-size: 12px; }

.verify-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 13px;
}
.verify-chip .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #33d17a;
}

.review-logo-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.verified-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:999px;
  font-size:13px;
  white-space:nowrap;
}

.verified-badge .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#33d17a;
}

/* === VERIFIED POPOVER (hover on desktop, tap/focus on mobile) === */
.verified-popover{
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Panelen som ska poppa upp (centrerad under badgen) */
.verified-panel{
  position: absolute;
  top: calc(100% + 10px);

  /* Centrera under badgen så den inte kan sticka ut åt vänster */
  left: 50%;
  right: auto;

  /* Viktigt: begränsa till viewport så den aldrig går utanför */
  width: min(360px, calc(100vw - 24px));

  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(10,13,20,0.98);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  /* Kombinera X-centering + din Y-animation */
  transform: translate(-50%, -6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* Triangel-pil (centrerad) */
.verified-panel::before{
  content:"";
  position:absolute;
  top:-8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(10,13,20,0.98);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);

  transform: translateX(-50%) rotate(45deg);
}

/* Visa panel på hover (desktop) och på focus (mobil tap) */
.verified-popover:hover .verified-panel,
.verified-popover:focus .verified-panel,
.verified-popover:focus-within .verified-panel{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Lite styling i panelen */
.verified-panel strong{ color:#fff; display:block; margin-bottom:8px; }
.verified-panel ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.verified-panel li{ color: #e8eef7; font-size: 0.92rem; line-height: 1.35; }

/* Fix: allow wrapping inside the Verified popover panel */
.verified-panel{
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* === MOBILE FIX: keep verified panel inside screen === */
@media (max-width: 640px){
  .verified-panel{
    /* Gör den alltid viewport-säker */
    left: 12px !important;
    right: 12px !important;
    width: auto !important;

    /* Sluta centrera med translate på mobil */
    transform: translateY(-6px) !important;

    /* Wrap + scroll om den blir lång */
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-height: 60vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    box-sizing: border-box;
  }

  .verified-popover:hover .verified-panel,
  .verified-popover:focus .verified-panel,
  .verified-popover:focus-within .verified-panel{
    transform: translateY(0) !important;
  }

  /* Pilen ska också följa med snyggt på mobil */
  .verified-panel::before{
    left: 24px !important;   /* justera om du vill ha den mer centrerad */
    right: auto !important;
    transform: rotate(45deg) !important;
  }
}

/* === FIX: logo-row spacing (works with your existing .review-logo-box) === */
.review-logo-row .review-logo-box{
  margin-bottom: 0 !important;   /* din .review-logo-box har margin-bottom:20px */
}

/* optional: align row nicely on mobile */
@media (max-width: 880px){
  .review-logo-row{
    justify-content: center;
  }
}

/* === Make provider list more compact (mobile + desktop) === */
.provider-grid{
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  gap: 6px !important;
}

.provider-grid > span{
  padding: 6px 10px !important;
  font-size: 0.78rem !important;
  line-height: 1.05 !important;
}

/* Extra compact on phones */
@media (max-width: 480px){
  .provider-grid{
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
  }
  .provider-grid > span{
    padding: 5px 9px !important;
    font-size: 0.74rem !important;
  }
}

/* Remove the fade overlay (since we don't use "Show more") */
#card-games .providers-wrap::after{
  display: none !important;
}

/* Providers: prevent overflow by wrapping text */
#card-games .provider-grid > span{
  white-space: normal !important;
  overflow-wrap: anywhere !important;   /* bryter även långa ord */
  word-break: break-word !important;
  text-align: center;
}

#card-games #providers-wrap::after{ display:none !important; }
#card-games #providers-wrap .provider-grid{
  max-height: none !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* === Mobile fix: stop mini-cards from overlapping the first content section === */
@media (max-width: 900px){

  /* Låt hero-right ta faktisk höjd (inte bara absolut-innehåll) */
  .review-hero-right{
    min-height: auto !important;
    padding-top: 16px !important;
  }

  /* Gör att endast aktiva kortet tar plats i flödet */
  .mini-card{
    position: relative !important;
    inset: auto !important;
    display: none !important;
    opacity: 0 !important;
  }

  .mini-card.active{
    display: block !important;
    opacity: 1 !important;
  }
}

/* === Provider list: compact + fits (mobile + desktop) === */
#card-games .provider-grid{
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)) !important;
  gap: 5px !important;
}

/* Smaller "chips" */
#card-games .provider-grid > span{
  padding: 5px 8px !important;
  font-size: 0.72rem !important;
  line-height: 1.05 !important;

  /* prevent overflow */
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  text-align: center;
}

/* Even tighter on very small phones */
@media (max-width: 420px){
  #card-games .provider-grid{
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)) !important;
    gap: 4px !important;
  }
  #card-games .provider-grid > span{
    padding: 4px 7px !important;
    font-size: 0.68rem !important;
  }
}

/* Providers scroll container (mini-card) */
.providers-wrap {
  max-height: 415px;          /* justera: 160–240px brukar vara sweet spot */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* minskar "scroll hijack" på mobil */
  padding-right: 6px;          /* lite space så text inte ligger på scrollbar */
}

/* Om din provider-grid redan är grid/flex: låt den fortsätta vara det */
.provider-grid {
  /* behåll dina befintliga grid-styles om du har dem */
}

/* Optional: om du vill att sista raden inte klipper */
.providers-wrap:focus-within {
  outline: none;
}

@media (max-width: 640px) {
  .providers-wrap { max-height: 160px; }
}

/* =========================
   REGION BLOCK — matches Review theme (dark / glass)
   ========================= */

.region-block{
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;

  margin: 18px 0 22px;
  padding: 14px 16px;

  /* matchar dina mini-cards / review-content */
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid #ffcc00;
  border-radius: 14px;
  backdrop-filter: blur(8px);

  box-shadow: 0 10px 24px rgba(0,0,0,0.35);

  color: #e8eef7;
}

.region-block::before{
  content: "!";
  flex: 0 0 auto;

  width: 34px;
  height: 34px;
  margin-top: 1px;

  display: grid;
  place-items: center;

  border-radius: 999px;

  /* guld-glow som matchar din #ffcc00 */
  background: rgba(255,204,0,0.16);
  border: 1px solid rgba(255,204,0,0.38);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);

  font-weight: 900;
  font-size: 16px;
  color: #ffcc00;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.region-block strong{
  display: block;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.2px;
}

.region-block p{
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(232,238,247,0.92);
}

/* CTA i boxen – matcha din .review-btn (grön gradient) */
.region-block a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  padding: 10px 14px;

  border-radius: 12px;
  text-decoration: none;

  background: linear-gradient(180deg, #24d48c, #1fc77a);
  color: #ffffff;

  font-weight: 800;
  font-size: 13px;
  line-height: 1;

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 22px rgba(31, 199, 122, 0.28);

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, opacity .15s ease;
}

.region-block a:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(31, 199, 122, 0.40);
}

.region-block a:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(31, 199, 122, 0.28);
}

/* liten extra “glow stripe” som passar din look */
.region-block::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(255,204,0,0.10), transparent 55%);
  opacity: 0.9;
}

@media (max-width: 520px){
  .region-block{
    padding: 14px;
    border-radius: 14px;
  }
  .region-block::before{
    width: 32px;
    height: 32px;
  }
  .region-block a{
    width: 100%;
  }
}

/* === AFTER HERO LINKS (Quick links + Guides) === */
.after-hero-links{
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 18px;
}

.after-hero-links__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}

.ahl-block{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: #e8eef7;
  backdrop-filter: blur(6px);
}

/* Quick links chips */
.ahl-tags{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ahl-tags li a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  transition: all .25s ease;
}

.ahl-tags li a:hover{
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: #ffcc00;
  transform: translateY(-1px);
}

.ahl-tags li a i{
  width: 18px;
  text-align: center;
  opacity: .95;
}

/* Guides list */
.ahl-guides{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.ahl-guide-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease;
}

.ahl-guide-link:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.25);
  color: #ffcc00;
  transform: translateY(-1px);
}

.ahl-guide-link i{
  width: 18px;
  text-align: center;
  opacity: .95;
}

/* Responsive */
@media (max-width: 900px){
  .after-hero-links{ padding: 0 12px; }
  .after-hero-links__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .ahl-tags li{ width: 100%; }
  .ahl-tags li a{
    width: 100%;
    justify-content: center;
  }
}
