/* ========== Bonus Hero Section ========== */

.bonus-hero {
  display: flex;
  gap: 1.5rem;
  padding: 10px 0;
  align-items: stretch;
}

.bonus-hero__left {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 2rem;
  border-radius: 12px;
  background: #1a0035;
}

.bonus-hero__right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
}
.bonus-hero__content-wrap {
  display: flex;
  padding: 10px;
  gap: 15px;
  background: #1a0035;
  border-radius: 12px;
  overflow: hidden;
}

/* ---- Badges row ---- */
.bonus-hero__badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 10px 0px;
  gap: 0.75rem;
}

.bonus-hero__valabilitate {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border: 1px solid #00fcd6;
  background-color: rgba(0, 252, 214, 0.2);
  border-radius: 6px;
  font-family: "Readex Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.bonus-hero__image-wrap {
  width: 30%;
  background-color: #370455;
  align-items: center;
  display: flex;
  border-radius: 15px;
}

.bonus-hero__counter {
  display: inline-flex;
  align-items: center;
  background: #fcd700;
  padding: 5px 14px 5px 6px;
  border-radius: 999px;
  color: black;
  gap: 0.4rem;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;
}

.bonus-hero__counter img {
  width: 24px;
  height: 24px;
}
.bonus-hero__content a {
  color: #fff;
}
.bonus-hero__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  flex: 1;
}

/* ---- Featured image + casino logo ---- */

.bonus-hero__casino-logo {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: white;
  height: 70px;
  border-radius: 8px;
  padding: 4px 10px;
  object-fit: contain;
  align-items: center;
  display: flex;
}

.bonus-hero__casino-logo img {
  max-height: 36px;
  width: auto;
  display: block;
}

/* ---- Content below image ---- */
.bonus-hero__tip {
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a.bonus-hero__tip {
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.bonus-hero__tip:hover,
a.bonus-hero__tip:focus-visible {
  color: #fff;
  text-decoration: none;
}

.bonus-hero__oferta {
  font-family: "Readex Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* ---- CTA Button ---- */
.bonus-hero__cta {
  width: 100%;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #c41bf7 0%, #7810e4 100%);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.bonus-hero__cta:hover {
  filter: brightness(1.1);
  transform: scale(0.98);
  background: linear-gradient(90deg, #1fd7c8 0%, #15efa3 100%);
  color: black;
}

.bonus-hero__cta:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* ---- Code box ---- */
.bonus-hero__code {
  width: 100%;
}

.bonus-hero__code-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 2px dashed #00fcd6;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.bonus-hero__code-box:hover {
  background: rgba(168, 85, 247, 0.1);
}

.bonus-hero__code-box--empty {
  cursor: default;
  border-color: #555;
}

.bonus-hero__code-box--empty:hover {
  background: none;
}

.bonus-hero__code-icon {
  width: 18px;
  height: 18px;
}

.bonus-hero__code-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.bonus-hero__code-msg {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  background: #22c55e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.bonus-hero__code-msg.visible {
  opacity: 1;
}

/* ========== Responsive ========== */

@media (max-width: 768px) {
  .bonus-hero {
    gap: 10px;
  }
  .bonus-hero__valabilitate {
    display: none;
  }
  .bonus-hero__image-wrap {
    width: 100%;
  }
  .bonus-hero__content-wrap {
    flex-direction: column;
  }
  .bonus-hero {
    flex-direction: column;
  }

  .bonus-hero__left,
  .bonus-hero__right {
    flex: 1 1 100%;
  }

  .bonus-hero__right {
    position: relative;
  }

  .bonus-hero__left {
    padding: 1.5rem;
  }
  .bonus-hero__badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0;
  }

  .bonus-hero__oferta {
    font-size: 14px;
  }

  .bonus-hero__left {
    padding: 1rem;
  }

  /* Счётчик поверх секции с фото казино, привязан к .bonus-hero__right */
  .bonus-hero__counter {
    position: absolute;
    top: 15px;
    right: 6%;
    font-size: 10px;
    padding: 3px 8px 3px 5px;
    z-index: 2;
  }
}

/* ========== Bonus Info Section (left box + right box + bottom) ========== */

.bonus-info-section {
  padding: 1.5rem 0 0 0;
}

.bonus-info-section__row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.bonus-info-box {
  flex: 1 1 50%;
  padding: 1.5rem;
  border-radius: 12px;
  background: #1a0035;
}

.bonus-info-box__title {
  font-family: "Readex Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.25rem 0;
  letter-spacing: 0.03em;
}

.bonus-info-box__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.bonus-info-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.bonus-info-box__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.6rem 0.75rem;
  background: #370556;
  border-radius: 8px;
}

.bonus-info-box__label {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #b0b0b0;
  font-weight: 400;
}

.bonus-info-box__value {
  font-family: "Readex Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.bonus-info-box__wysiwyg {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.bonus-info-box__wysiwyg--titlu {
  margin-bottom: 1rem;
}

.bonus-info-box__wysiwyg--descriere {
  margin-top: 0;
}

.bonus-info-box__wysiwyg--descriere ul {
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.5rem;
}

/* Ordered list — same design as style-casino-flex */
.bonus-info-box__wysiwyg--descriere ol {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 10px 0 1rem 0;
  padding-left: 0;
}

.bonus-info-box__wysiwyg--descriere ol li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0 !important;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #b0b0b0;
  display: block;
  counter-increment: step;
}

.bonus-info-box__wysiwyg--descriere ol li strong {
  font-weight: 700;
  margin-bottom: -16px;
  color: #fff;
  display: block;
}

.bonus-info-box__wysiwyg--descriere ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  min-height: 1.5em;
  font-family: "Readex Pro", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: black;
  background: linear-gradient(135deg, #28ed98 0%, #24cac8 100%);
  border-radius: 100px;
  line-height: 1;
}

.bonus-info-section__bottom {
  padding: 1rem 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.bonus-info-section__bottom p {
  margin: 0 0 0.75rem 0;
  color: #b0b0b0;
}

@media (max-width: 900px) {
  .bonus-info-section__row {
    flex-direction: column;
  }

  .bonus-info-box {
    flex: 1 1 100%;
    padding: 1rem;
  }

  .bonus-info-box__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bonus-info-box__wysiwyg--descriere ol {
    gap: 15px;
  }

  .bonus-info-box__wysiwyg--descriere ol li {
    font-size: 14px;
  }

  .bonus-info-box__wysiwyg--descriere ol li::before {
    min-width: 1.5em;
    min-height: 1.5em;
    font-size: 16px;
  }
}

/* ========== Verdict Section (Verdictul lui Edi) — single bonus ========== */
.verdict-section {
  padding: 1rem 0;
}

.verdict-block {
  background: #4a0492;
  border-radius: 12px 12px 0 0;
  padding: 1.75rem 1.75rem 1rem 1.75rem;
  max-width: 100%;
}

.verdict-block-bottom {
  background: #6805d0;
  border-radius: 0 0 12px 12px;
  padding: 1rem 1.75rem 1.75rem 1.75rem;
  max-width: 100%;
}

.verdict-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.verdict-header p {
  margin-bottom: 0 !important;
}

.verdict-block-bottom p {
  color: #fff;
  font-style: italic !important;
}

.verdict-header h2 {
  margin-bottom: 3px !important;
}

.verdict-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}

@media (max-width: 767px) {
  .verdict-block {
    padding: 1.25rem 1.25rem;
  }

  .verdict-avatar {
    width: 56px;
    height: 56px;
  }

  .verdict-block-bottom {
    padding: 10px;
  }
}



/* ========== FAQ (Flex) ========== */
.casino-flex-content .faq-section {
  padding: 1rem 0;
}

.casino-flex-content .faq-section__description {
  margin-bottom: 1rem;
}

.casino-flex-content .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
}

.casino-flex-content .faq-list details {
  background: #1a0035;
  border-radius: 8px;
}

.casino-flex-content .faq-list details summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.casino-flex-content .faq-list details summary::-webkit-details-marker,
.casino-flex-content .faq-list details summary::marker {
  display: none;
}

.casino-flex-content .faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}

.casino-flex-content .faq-list details[open] .faq-icon {
  background: rgba(0, 0, 0, 0.3);
}

.casino-flex-content .faq-icon-plus {
  display: inline;
}
.casino-flex-content .faq-icon-minus {
  display: none;
}
.casino-flex-content .faq-list details[open] .faq-icon-plus {
  display: none;
}
.casino-flex-content .faq-list details[open] .faq-icon-minus {
  display: inline;
}

.casino-flex-content .faq-list details > div {
  padding: 0 1.25rem 1.25rem 1.25rem;
  padding-left: calc(1.25rem + 26px + 0.75rem);
}

.casino-flex-content .faq-list details > div p {
  margin: 0 !important;
}
