/* ============================================================
   Bizzo Casino — style.css
   ============================================================ */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }

html { line-height: 1.15; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #2B1234;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

ul, ol { margin: 0 0 1.5em 0; padding-left: 1.25em; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ----- Layout ----- */
.container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #2B1234;
  padding: 14px 28px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 16px 0;
  font-size: 20px;
  background: linear-gradient(180deg, #B1FB4F 0%, #0CBA3A 100%);
  box-shadow: 0 6px 0 #008C25;
}
.btn--primary:hover { box-shadow: 0 8px 0 #008C25; }

.btn--login {
  width: 160px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FFCE07 0%, #FFA600 100%);
  box-shadow: 0 4px 0 #A06A3B;
}
.btn--signup {
  width: 160px;
  padding: 12px 0;
  background: linear-gradient(180deg, #B1FB4F 0%, #0CBA3A 100%);
  box-shadow: 0 4px 0 #008C25;
}

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  background: #41294A;
  border-bottom: 1px solid rgba(253, 205, 10, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  position: relative;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-header__logo img { display: block; }

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__link {
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.site-nav__link:hover {
  color: #FDCD0A;
  background: rgba(253, 205, 10, 0.08);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-header__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.site-header__lang img { display: block; }
.site-header__lang-code {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #F8E1F3;
}

/* nav-wrap: на десктопе — flex-строка, на мобайле — dropdown.
   Это единственный блок nav+actions (дублирование HTML удалено). */
.nav-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
  justify-content: space-between;
}

/* Burger — скрыт на десктопе */
.menu-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}
.menu-toggle__bar         { top: 9px; }
.menu-toggle__bar::before { content: ""; top: -8px; }
.menu-toggle__bar::after  { content: ""; top: 8px; }

.menu-toggle.is-open .menu-toggle__bar { background: transparent; }
.menu-toggle.is-open .menu-toggle__bar::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }

  /* nav-wrap становится выпадающей панелью */
  .nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #41294A;
    border-top: 1px solid rgba(253, 205, 10, 0.35);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 12px;
    z-index: 200;
  }
  .nav-wrap.is-open { display: flex; }

  .site-nav {
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 2px;
  }
  .site-nav__link {
    display: block;
    padding: 10px 12px;
    text-align: left;
    border-radius: 6px;
  }

  .site-header__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    border-top: 1px solid rgba(253, 205, 10, 0.2);
    padding-top: 12px;
  }
  .site-header__actions .btn { width: 100%; }
}

/* ============================================================
   Hero — полноэкранный
   ============================================================ */
.hero {
  margin-top: 20px;
  background: url(../../wp-content/uploads/2022/08/mainbg.webp) no-repeat center / cover;
  border-radius: 24px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 60px 40px;
  text-align: center;
  /* тёмный оверлей по краям — текст читается на любом фоне */
  background: radial-gradient(ellipse at center, transparent 40%, rgba(43,18,52,0.55) 100%);
}
.hero__inner::before,
.hero__inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(606px, 100%);
  height: 26px;
  background: url(../../wp-content/themes/bizzo-gre/assets/images/decorline.png) no-repeat center;
  pointer-events: none;
}
.hero__inner::before { top: 0; }
.hero__inner::after  { bottom: 0; }

.hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FDCD0A;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 24px;
  max-width: 900px;
}
.hero__subtitle {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.3;
  color: #FDCD0A;
  background: rgba(65,41,74,0.85);
  border: 1px solid rgba(253,205,10,0.3);
  border-radius: 10px;
  padding: 10px 20px;
  backdrop-filter: blur(4px);
}
.hero__btn { margin-top: 36px; }

@media (max-width: 768px) {
  .hero__inner { min-height: 360px; padding: 50px 24px; }
  .hero__inner::before, .hero__inner::after { display: none; }
}
@media (max-width: 480px) {
  .hero__inner { min-height: 280px; }
}

/* ============================================================
   Page Hero (subpages)
   ============================================================ */
.page-hero {
  margin-top: 20px;
  border: 2px solid #FDCD0A;
  border-radius: 24px;
  padding: 40px 60px 80px;
  overflow: hidden;
}
.page-hero--bonuses { background: url(../../wp-content/uploads/2022/08/bpmanbg.png) no-repeat center / cover; }
.page-hero--app     { background: url(../../wp-content/uploads/2022/08/mobilbg.webp) no-repeat center / cover; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.breadcrumbs__link {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.breadcrumbs__link:hover { color: #fff; }
.breadcrumbs__sep { color: rgba(255,255,255,0.4); font-size: 12px; }
.breadcrumbs__current {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FDCD0A;
}

.page-hero__content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
}
.page-hero__content::before,
.page-hero__content::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(606px, 100%);
  height: 26px;
  background: url(../../wp-content/themes/bizzo-gre/assets/images/decorline.png) no-repeat center;
}
.page-hero__content::before { top: 0; }
.page-hero__content::after  { bottom: 0; }

.page-hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 24px;
}
.page-hero__btn { padding-top: 12px; }

@media (max-width: 768px) {
  .page-hero { padding: 24px; }
  .page-hero__content::before, .page-hero__content::after { display: none; }
}

/* ============================================================
   Section (контентный блок)
   ============================================================ */
.section { margin-top: 24px; }
.section__inner {
  position: relative;
  background: #41294A;
  border: 1px solid rgba(253, 205, 10, 0.5);
  border-radius: 24px;
  padding: 32px 32px 20px;
  overflow: hidden;
  /* мягкое свечение рамки */
  box-shadow: 0 0 0 1px rgba(253,205,10,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.section__inner--solid {
  border-width: 2px;
  border-color: #FDCD0A;
}
.section__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 0;
}
.section__head::before,
.section__head::after {
  content: "";
  width: 66px;
  height: 30px;
  margin: 0 10px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.section__head::before { background-image: url(../../wp-content/themes/bizzo-gre/assets/images/decleft.png); }
.section__head::after  { background-image: url(../../wp-content/themes/bizzo-gre/assets/images/decright.png); }

.section__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
}
.section__body p,
.section__body li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}
.section__body p { margin: 16px 0 24px; }
.section__body li { margin-bottom: 10px; }
.section__body ul { margin-bottom: 18px; }

.section__body h3 {
  display: inline-block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.section__body h3::before,
.section__body h3::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 180px;
  height: 4px;
  border-radius: 2px;
}
.section__body h3::before { right: 100%; margin-right: 16px; background: linear-gradient(to left, #FDCD0A, transparent); }
.section__body h3::after  { left: 100%;  margin-left: 16px;  background: linear-gradient(to right, #FDCD0A, transparent); }

.section__cta {
  text-align: center;
  padding-bottom: 36px;
}

@media (max-width: 1200px) {
  .section__head::before,
  .section__head::after { display: none; }
}
@media (max-width: 900px) {
  .section__body h3::before,
  .section__body h3::after { display: none; }
}
@media (max-width: 576px) {
  .section { margin-top: 16px; }
  .section__inner { padding: 20px 16px 12px; }
  .section__title { font-size: 22px; }
  .section__body h3 { font-size: 20px; }
}

/* ============================================================
   Info grid
   ============================================================ */
.info-grid {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.info-grid__col {
  flex: 1 1 0;
  background: #41294A;
  border: 2px solid #FDCD0A;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 0 0 1px rgba(253,205,10,0.1);
}
.info-grid__title {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 20px;
  padding-bottom: 14px;
}
.info-grid__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #FDCD0A, transparent);
}
.info-grid__list { list-style: none; padding: 0; margin: 0; }
.info-grid__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.info-grid__list li::before {
  content: "";
  position: absolute;
  top: 4px; left: 0;
  width: 15px; height: 15px;
  background-repeat: no-repeat;
}
.info-grid__list--info li::before { background-image: url(../../wp-content/themes/bizzo-gre/assets/images/icon-1.png); }
.info-grid__list--pros li::before { background-image: url(../../wp-content/themes/bizzo-gre/assets/images/icon-2.png); }

@media (max-width: 900px) {
  .info-grid { flex-direction: column; }
  .info-grid__col { min-height: auto; }
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #830DBB 0%, #5F10C8 50%, #3713D7 100%);
  border-radius: 24px;
  overflow: hidden;
}
.cta-banner__inner {
  padding: 80px 24px;
  background: url(../../wp-content/uploads/2022/08/banerbadge.webp) no-repeat center / 100%;
}
.cta-banner__content {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(65,41,74,0.92);
  border: 1px solid rgba(253,205,10,0.3);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.cta-banner__text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FDCD0A;
}
.cta-banner__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FDCD0A;
  margin: 16px 0;
}
.cta-banner__btn { margin-top: 20px; }

@media (max-width: 1200px) {
  .cta-banner__inner { background-image: none; padding: 32px 20px; }
}

/* ============================================================
   Payment table
   ============================================================ */
.payment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px;
  margin-bottom: 0;
}
.payment-table td {
  width: 20%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2B1234;
  padding: 20px 10px;
  background: linear-gradient(175deg, #FFFFFF 10%, #FFCE07 80%);
  border-radius: 14px;
  transition: transform 0.15s;
}
.payment-table td:hover { transform: translateY(-2px); }

@media (max-width: 1000px) {
  .payment-table td { font-size: 18px; padding: 16px 8px; }
}
@media (max-width: 700px) {
  .payment-table { border-spacing: 0; display: block; }
  .payment-table tbody { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .payment-table tr { display: contents; }
  .payment-table td { display: block; width: 100%; border-radius: 12px; }
}

/* ============================================================
   #content — главный контентный блок
   ============================================================ */
#content {
  padding: 40px 60px 20px;
}
#content > * + * { margin-top: 20px; }

#content h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-top: 48px;
  /* разделитель сверху */
  padding-top: 36px;
  border-top: 1px solid rgba(253,205,10,0.15);
}
/* первый h2 без разделителя сверху */
#content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }

#content h2::before,
#content h2::after {
  content: "";
  width: 66px;
  height: 30px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
#content h2::before { background-image: url(../../wp-content/themes/bizzo-gre/assets/images/decleft.png); }
#content h2::after  { background-image: url(../../wp-content/themes/bizzo-gre/assets/images/decright.png); }

#content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-top: 32px;
  opacity: 0.9;
}

#content p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}

#content ul {
  margin: 0;
  padding-left: 28px;
}
#content li {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
#content li::marker { color: #FDCD0A; }

#content .btn {
  margin-top: 28px;
  margin-bottom: 8px;
}

#content .payment-table {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  #content { padding: 32px 40px 16px; }
  #content h2::before,
  #content h2::after { display: none; }
}
@media (max-width: 768px) {
  #content { padding: 24px 20px 12px; }
}
@media (max-width: 576px) {
  #content h2 { font-size: 20px; }
  #content h3 { font-size: 17px; }
  #content p,
  #content li { font-size: 15px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 24px; }
.faq__inner {
  background: #41294A;
  border: 2px solid rgba(253,205,10,0.6);
  border-radius: 24px;
  padding: 28px;
}
.faq__list { list-style: none; padding: 0; margin: 0; }
.faq__item {
  background: #FDCD0A;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item:last-child { margin-bottom: 0; }
.faq__question {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B1234;
  padding: 20px 20px 20px 56px;
  margin: 0;
}
.faq__question::before {
  content: "";
  position: absolute;
  top: 22px; left: 20px;
  width: 21px; height: 21px;
  background: url(../../wp-content/themes/bizzo-gre/assets/images/que.png) no-repeat;
}
.faq__answer {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2B1234;
  padding: 0 20px 20px 56px;
  margin: 0;
}
@media (max-width: 576px) {
  .faq__question { font-size: 17px; padding-left: 48px; }
  .faq__question::before { top: 20px; }
  .faq__answer { padding-left: 20px; }
}

/* ============================================================
   Bonus cards
   ============================================================ */
.bonus-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}
.bonus-card {
  flex: 0 0 calc(50% - 12px);
  display: flex;
  flex-direction: column;
}
.bonus-card__badge {
  border: 2px solid #7B027F;
  border-radius: 20px 20px 0 0;
  background: url(../../wp-content/themes/bizzo-gre/assets/images/bizzocasino.png) no-repeat center;
}
.bonus-card__badge img {
  display: block;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
}
.bonus-card__body {
  position: relative;
  background: #7B027F;
  border-radius: 0 0 20px 20px;
  padding: 80px 36px;
  text-align: center;
  flex: 1;
}
.bonus-card__body::before,
.bonus-card__body::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(606px, calc(100% - 20px));
  height: 26px;
  background: url(../../wp-content/themes/bizzo-gre/assets/images/decorline.png) no-repeat center;
}
.bonus-card__body::before { top: 36px; }
.bonus-card__body::after  { bottom: 36px; }

.bonus-card__text {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.bonus-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFC700;
}
.bonus-card__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
}
.bonus-card__btn { margin-top: 28px; }

@media (max-width: 900px) {
  .bonus-card { flex: 0 0 100%; }
}
@media (max-width: 576px) {
  .bonus-card__body { padding: 70px 20px; }
}

/* ============================================================
   App CTA
   ============================================================ */
.app-cta { margin-top: 24px; }
.app-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.app-cta__visual {
  border: 2px solid #7B027F;
  border-radius: 20px 20px 0 0;
  padding: 36px;
  background: url(../../wp-content/uploads/2022/08/mobbg.webp) no-repeat center / cover;
}
.app-cta__rating {
  width: 340px;
  max-width: 100%;
  height: 340px;
  border-radius: 50%;
  background: #7B027F url(../../wp-content/uploads/2022/08/magic-amulets.webp) no-repeat center / cover;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 0 60px rgba(123,2,127,0.6);
}
.app-cta__rank {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FDCD0A;
  text-align: center;
}
.app-cta__score {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: #FDCD0A;
  margin: 8px 0;
}
.app-cta__stars {
  position: relative;
  width: 220px;
  height: 32px;
}
.app-cta__stars img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.app-cta__body {
  position: relative;
  background: #7B027F;
  border-radius: 0 0 20px 20px;
  padding: 60px 36px;
  text-align: center;
  overflow: hidden;
}
.app-cta__body::before,
.app-cta__body::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(606px, calc(100% - 20px));
  height: 26px;
  background: url(../../wp-content/themes/bizzo-gre/assets/images/decorline.png) no-repeat center;
}
.app-cta__body::before { top: 20px; }
.app-cta__body::after  { bottom: 20px; }

.app-cta__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FDCD0A;
}
.app-cta__btn { margin-top: 24px; }

@media (max-width: 576px) {
  .app-cta__rating { width: 260px; height: 260px; }
  .app-cta__score { font-size: 44px; }
  .app-cta__rank  { font-size: 20px; }
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
  margin-top: 40px;
  background: #41294A;
  border-top: 1px solid rgba(253,205,10,0.2);
}
.site-footer__inner {
  text-align: center;
  padding: 50px 0 40px;
}
.site-footer__logo {
  margin-bottom: 24px;
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.site-footer__logo:hover { opacity: 1; }
.site-footer__logo img { margin: 0 auto; }

.site-footer__text {
  max-width: 860px;
  margin: 0 auto 32px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

.site-footer__partners {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 28px;
}
.site-footer__partners::before,
.site-footer__partners::after {
  content: "";
  position: absolute;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(253,205,10,0.5), transparent);
}
.site-footer__partners::before { top: 0; }
.site-footer__partners::after  { bottom: 0; }
.site-footer__partners img {
  height: 30px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity 0.15s, filter 0.15s;
}
.site-footer__partners img:hover { opacity: 1; filter: none; }

.site-footer__age {
  margin: 0 auto 12px;
  opacity: 0.6;
}
.site-footer__copy {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
