@import url('icons/css/myfont.css');

:root {
  --gc-purple-deep: #2A1860;
  --gc-purple: #5E35B1;
  --gc-purple-mid: #4A2D9A;
  --gc-purple-light: #7B57E4;
  --gc-purple-soft: #9B7FEE;
  --gc-yellow: #FFE135;
  --gc-yellow-hover: #FFD700;
  --gc-yellow-text: #1A1028;
  --gc-bg-body: #120A28;
  --gc-bg-card: #1E1245;
  --gc-bg-card-hover: #261856;
  --gc-content-bg: #F2F2F7;
  --gc-content-text: #2B2B38;
  --gc-content-muted: #5C5C6F;
  --gc-white: #FFFFFF;
  --gc-footer-bg: #EAEFFD;
  --gc-footer-text: #3D3D4A;
  --gc-footer-muted: #7A7A88;
  --gc-radius-xl: 24px;
  --gc-radius-lg: 18px;
  --gc-radius-md: 14px;
  --gc-radius-sm: 10px;
  --gc-shadow-card: 0 8px 32px rgba(42, 24, 96, 0.35);
  --gc-shadow-soft: 0 4px 16px rgba(42, 24, 96, 0.2);
  --gc-content-width: 910px;
  --gc-h1-width: 1175px;
  --gc-transition: 0.22s ease;
}

@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Regular.ttf);
  font-weight: 400;
}
@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins-SemiBold.ttf);
    font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat-Medium.ttf);
  font-weight: 500;
}
@font-face {
    font-family: "Montserrat";
    src: url(fonts/Montserrat-SemiBold.ttf);
    font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url(fonts/Montserrat-Bold.ttf);
  font-weight: 700;
}
@font-face {
    font-family: "Montserrat";
    src: url(fonts/Montserrat-ExtraBold.ttf);
    font-weight: 800;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  background: linear-gradient(180deg, var(--gc-bg-body) 0%, #1A0F3C 40%, var(--gc-bg-body) 100%);
  background-color: var(--gc-bg-body);
  color: var(--gc-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
    font-family: 'Montserrat';
    font-weight: 800;
}
h4, h5 {
    font-family: 'Montserrat';
    font-weight: 600;
}

h1 {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
}

input:not([type=checkbox]),
input:not([type=checkbox]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}


.header {
  width: 100%;
  padding: 12px 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, var(--gc-purple-deep) 0%, var(--gc-purple-mid) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.fixed-header {
  padding-top: 64px;
}
body.fixed-header .header {
  box-shadow: var(--gc-shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header .wrap,
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__inner .custom-logo-link {
  flex-shrink: 0;
}
.header__inner .page-anchor-nav {
  flex: 1;
  min-width: 0;
}
.header__inner .header-btns {
  flex-shrink: 0;
}
.custom-logo-link, .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-logo-link img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
}
.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-btns .btn {
  width: auto;
  min-width: 100px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.header-btns .btn-red {
  background-color: var(--gc-yellow);
  color: var(--gc-yellow-text);
  animation: none;
}
.header-btns .btn-red:hover {
  background-color: var(--gc-yellow-hover);
  color: var(--gc-yellow-text);
}
.header-btns .btn-green {
  background-color: transparent;
  color: var(--gc-white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  animation: none;
}
.header-btns .btn-green:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--gc-white);
  border-color: var(--gc-white);
}
.header-btns .btn:last-child {
  margin-left: 15px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.menu a {
  padding: 5px;
  color: #fff;
  font-size: 15px;
}
.menu a:hover, .current-menu-item>a {
  opacity: 0.7;
}
.header .menu .menu-item-has-children {
  position: relative;
  .sub-menu {
    min-width: 350px;
    padding: 15px 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    display: none;
    li {
      margin-bottom: 10px;
    }
  }
}
.menu .menu-item-has-children>a {
  position: relative;
}
.menu .menu-item-has-children>a::after {
  content: '\f107';
  font-family: "myfont";
  margin-left: 5px;
  /*position: absolute;*/
  /*top: 50%;*/
  /*right: 0;*/
  /*transform: translateY(-50%);*/
}
.header .menu .menu-item-has-children:hover .sub-menu {
  display: block;
}
.menu li {
  margin-right: 20px;
  list-style-type: none;
  padding: 0;
}
.menu li:last-child {
  margin-right: 0;
}
.header-menu {
  .menu {
    display: block;
    li {
      margin-bottom: 15px;
    }
    li:last-child {
      margin-bottom: 0;
    }
  }
  position: relative;
}
.header-menu-title {
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
}
.header-menu-list {
  min-width: 350px;
  padding: 15px 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  display: none;
}
.header-menu:hover .header-menu-list {
  display: block;
}
.btn {
  border-radius: 999px;
  line-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--gc-yellow-text);
  background-color: var(--gc-yellow);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  border: none;
  transition: background-color var(--gc-transition), color var(--gc-transition), transform var(--gc-transition), box-shadow var(--gc-transition);
  -webkit-animation-name: puls;
  animation-name: puls;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.btn:hover {
  background-color: var(--gc-yellow-hover);
  color: var(--gc-yellow-text);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 225, 53, 0.35);
}

/*.btn-red {*/
/*  background-color: #D32222;*/
/*}*/

/*.btn-green {*/
/*  background-color: #149C44;*/
/*}*/

.btn.text__button {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
  line-height: 52px;
}

.main-text-content > a[rel="nofollow"] {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
  line-height: 52px;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--gc-purple-light);
  animation: none;
}

.main-text-content > a[rel="nofollow"]:hover {
  color: #ffffff;
  background-color: var(--gc-purple);
  box-shadow: 0 6px 20px rgba(123, 87, 228, 0.35);
}

@-webkit-keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.banner {
  height: auto;
  min-height: 340px;
  border-radius: var(--gc-radius-xl);
  margin-top: 16px;
  padding: 40px 32px;
  background-color: var(--gc-purple);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gc-shadow-card);
}
.banner-wrap.section {
  margin-bottom: 48px;
}

.banner-img {
  max-width: 580px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-img img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}

.offer {
  max-width: 420px;
  width: 100%;
  margin-right: auto;
  margin-left: 0;
  z-index: 2;
  text-align: left;
}
.offer-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--gc-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.offer-desc {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 30px;
    color: #7d7c7c;
}
.offer-btns {
  display: flex;
}
.offer-btns .btn:nth-child(2) {
  margin-left: 15px;
}
/*.offer-btn.btn {
  background-color: #149C44;
}*/
.offer-btns .btn {
  max-width: 290px;
  width: 100%;
  font-weight: 700;
  line-height: 52px;
}

.offer-btns .btn {
  max-width: 100%;
  width: 100%;
  font-weight: 700;
  line-height: 52px;
  font-size: 16px;
}

.bonus-item {
  -webkit-border-radius: var(--gc-radius-lg);
  -moz-border-radius: var(--gc-radius-lg);
  border-radius: var(--gc-radius-lg);
  padding: 18px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gc-bg-card) 0%, #261856 100%);
  color: var(--gc-white);
  border: 1px solid rgba(155, 127, 238, 0.25);
  box-shadow: var(--gc-shadow-soft);
  transition: border-color var(--gc-transition), transform var(--gc-transition);
}
.bonus-item:hover {
  border-color: rgba(255, 225, 53, 0.45);
  transform: translateY(-2px);
}
.bonus-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bonus-item-text {
  margin-right: 15px;
}
.bonus-item-icon {
  max-width: 90px;
  margin-right: 15px;
}

.bonus-item-text {
  margin-right: 15px;
}

.slots .wrap {
  padding: 0 7px;
}
.slots-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slots .slot {
  width: 16.6666%;
  padding: 0 7px;
  margin-bottom: 15px;
}
.slots .slot .inner {
  display: block;
  position: relative;
}
.slots .slot img {
  display: block;
  border-radius: var(--gc-radius-md);
  transition: transform var(--gc-transition), box-shadow var(--gc-transition);
}
.slots .slot .inner:hover img {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.page-item {
  background-color: var(--gc-bg-card);
}

.text-title {
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
}

.main-text-wrap {
  border-radius: var(--gc-radius-xl);
  padding: 32px 24px;
  position: relative;
}
#text .main-text-wrap {
  background-color: var(--gc-content-bg);
  color: var(--gc-content-text);
  box-shadow: 0 12px 40px rgba(18, 10, 40, 0.15);
}
#text .main-text-wrap > h1 {
  color: #1A1028;
  text-align: center;
}
#text .main-text-content h2,
#text .main-text-content h3 {
  color: #1A1028;
}
#text .main-text-content a:not([rel="nofollow"]) {
  color: var(--gc-purple-light);
}
#text .main-text-content a:not([rel="nofollow"]):hover {
  color: var(--gc-purple);
}
#text .main-text-content > a[rel="nofollow"] {
  color: #ffffff;
  background-color: var(--gc-purple-light);
}
#text .main-text-content > a[rel="nofollow"]:hover {
  color: #ffffff;
  background-color: var(--gc-purple);
}
/*.main-text-wrap::before {
  content: "";
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 5px;
  background-color: #00CFA6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}*/
.main-text-content {
  line-height: 1.5;
    position: relative;
}

.main-text-content img.aligncenter {
  display: block;
  margin: 0 auto;
}
.main-text-content a, .page-text a {
  font-weight: 700;
}

.slick-slide {
  height: 0!important;
}
.slick-slide.slick-active {
  height: 100% !important;
}

.section {
  margin-bottom: 64px;
}

.footer {
  background-color: var(--gc-footer-bg);
  padding-top: 40px;
  padding-bottom: 28px;
  color: var(--gc-footer-text);
  margin-top: 24px;
}
.footer .wrap {
  border-top: none;
  padding-top: 0;
}
.footer .pay-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8EE;
}
.footer .pay-item img {
  max-width: 90px;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity var(--gc-transition);
}
.footer .pay-item img:hover {
  opacity: 1;
}
.footer .own {
  font-size: 12px;
  text-align: center;
  color: var(--gc-footer-muted);
  line-height: 1.5;
}

.mobile-btn {
  width: 36px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.mobile-btn .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.mobile-btn .top {
  top: 0;
}
.mobile-btn .middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-btn .bottom {
  bottom: 0;
}

.mobile-wrap {
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, var(--gc-purple-deep) 0%, var(--gc-purple-mid) 100%);
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 200;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
}
.mobile-wrap.active {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: 0;
}
.mobile-body {
  padding: 70px 15px 15px 25px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 35px;
  right: 25px;
}
.mobile-wrap .menu {
  display: block;
  padding: 0;
}
.mobile-wrap .menu a {
  padding: 5px;
}
.mobile-wrap .menu>li {
  margin-bottom: 30px;
  list-style-type: none;
  .sub-menu {
    margin-top: 15px;
    padding-left: 15px;
    li {
      margin-bottom: 15px;
      a {
        font-size: 14px;
      }
    }
  }
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.close .inner::before,
.close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.fixed-bar {
  width: 100vw;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.fixed-bar .inner {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #00CFA6;
  position: relative;
}
.fixed-bar .phone {
  width: 90px;
  position: absolute;
  left: 10px;
  bottom: -100px;
}
.fixed-bar-btn {
  padding: 0 15px;
}
.fixed-bar-btn .btn__icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.aviator-banner.banner {
  background-color: #DD003B;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aviator-banner .banner-img {
  width: 40%;
}

.text-block {
  margin-bottom: 50px;
}
.text-block-inner {
  background-color: #1D2332;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 18px;
  position: relative;
}
.text-block-inner::before {
  content: "";
  display: block;
  max-width: 1000px;
  width: 100%;
  height: 5px;
  background-color: #00CFA6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.text-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-block-content .text {
  font-size: 16px;
  line-height: 1.5;
}

.app-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}
.app-banner .banner-img {
  width: 350px;
  position: absolute;
  bottom: 0;
  right: 20px;
}
.app-notice {
  font-size: 12px;
  margin-bottom: 15px;
}

.offer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.offer-btns .app-btn.btn:last-child {
  margin-right: 0;
}

.app-btn.btn, .btn-ios.btn, .btn-android.btn {
  padding: 5px 25px;
  font-size: 12px;
  line-height: 1.3;
  margin-right: 25px;
  background-color: #D32222;
}
.app-btn.btn .btn__icon, .btn-ios.btn .btn__icon, .btn-android.btn .btn__icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.app-btn.btn .btn__text {
  font-size: 12px;
}

.bonus-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}

.bonus-banner .banner-img {
  max-width: 546px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 15px;
}

.btn.promo {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 52px;
}
.btn.promo .btn__icon {
  width: 25px;
  height: 25px;
  background-image: url("../img/copy.svg");
  background-size: cover;
  margin-left: 15px;
}

.btn.promo .btn__input {
  display: none;
}

.btn.promo.copy .btn__icon {
  background-image: url("../img/check.svg");
}

.bonus-btn {
  padding: 0 25px;
}

.rate-banner {
  background-color: #F92130;
  background-image: url("../img/casino.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50%;
}

.promo-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
}
.promo-banner .offer {
  max-width: 610px;
}
.btn.promo {
  -webkit-animation-name: btnPuls;
          animation-name: btnPuls;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes btnPuls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes btnPuls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.main-text-content img, .text-block-content .text img {
  max-width: 100%;
  width: auto;
}

/* .apostas-banner.banner {
  background: radial-gradient(#020F1F 0%, #031F38 100%);
} */

.apostas-banner.banner .banner-img {
  max-width: 600px;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.text-block-content img.aligncenter {
  display: block;
  margin: 0 auto;
}
.advant .wrap {
  padding: 0;
}

.advant-content {
  display: flex;
  justify-content: space-between;
}
.advant-item {
  width: 25%;
  padding: 0 15px;
}
.advant-item-content {
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.advant-item .item__icon {
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.advant-item .item__icon svg {
    width: 35px;
    height: 35px;
    stroke: #E50914;
}
.advant-item .item__text {
  text-align: center;
  line-height: 1.3;
}
.faq-item {
  margin-bottom: 20px;
  padding: 30px 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
    border: 1px solid transparent;
    background-color: #1A1419;
    color: #fff;
}
.faq-item:hover, .faq-item.active {
    border: 1px solid #E50914;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
}
.faq-arrow {
  font-size: 25px;
  transform: rotate(0deg);
  transition: 0.3s;
  flex-shrink: 0;
}
.faq-arrow::before {
  font-family: "myfont";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f107';
}
.faq-answer {
  line-height: 1.3;
  margin-top: 15px;
  display: none;
}
.faq-answer p {
  margin: 0;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  transition: 0.3s;
}

.reviews .wrap {
  padding: 0;
}
.reviews-item {
  padding: 0 15px;
}
.reviews-item .inner {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding: 25px 15px;
    background-color: #121212;
    color: #fff;
}
.reviews-item .title__row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reviews-item .item__img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 150%;
  -moz-border-radius: 150%;
  border-radius: 150%;
  overflow: hidden;
  margin-right: 10px;
}
.reviews-item .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-item .item__name {
  font-size: 20px;
  font-weight: 700;
}
.reviews-item .item__text {
  line-height: 1.3;
}
.stars {
    display: flex;
}
.stars svg {
    width: 12px;
    height: 12px;
    fill: #FFD300;
    stroke: #FFD300;
}
.slider-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-nav-item {
  font-size: 45px;
  cursor: pointer;
}
.slider-nav-item.item__prev {
  transform: rotate(90deg);
}
.slider-nav-item.item__next {
  transform: rotate(-90deg);
}
.slider-nav .slick-next, .slider-nav .slick-prev {
  position: static;
}
.slider-nav .slick-dots {
  position: static;
}
.slider-nav .slick-dots li button {
  color: inherit;
}
.slider-nav .slick-dots li button::before {
  color: inherit;
  font-size: 10px;
}

.banner {
  background-size: cover;
  background-position: center center;
}
.banner.banner-dark::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.banner .offer {
  position: relative;
}
.language-switch ul {
  display: flex;
}
.language-switch li {
  list-style-type: none;
  margin-right: 15px;
}
.language-switch a {
  text-transform: uppercase;
}
.language-switch li.active {
  text-decoration: underline;
}
.footer {
  .lang-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer-item {
  ul {
    margin: 0;
    padding: 0;
  }
  li {
    list-style-type: none;
    margin-bottom: 10px;
  }
}
.single-authors .author-content,
.author-block .author-content {
  display: flex;
  position: relative;
}
.author-block .author-content .dates,
.single-authors .author-content .dates {
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
}
.author-block .author-content .date,
.single-authors .author-content .date {
    display: flex;
}
.author-info {
    color: #CFCFCF;
}
.author-img {
  width: 150px;
  min-width: 150px;
  height: 150px;
  margin-right: 15px;
  img {
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 150%;
    -moz-border-radius: 150%;
    border-radius: 150%;
  }
}
.author-info-item {
  margin-bottom: 20px;
}
.author-title {
  font-size: 25px;
  font-weight: 700;
    color: #fff;
}
.author-position {
  font-weight: 700;
}
.author-social {
  a {
    margin-right: 10px;
  }
}
.social {
  a {
    font-size: 16px;
  }
}
.partner-item {
  padding: 0 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  img {
    max-width: 100px;
    width: auto;
    max-height: 150px;
    height: auto;
  }
}
.partners-row {
  .slick-arrow::before {
    content: '\f107';
    font-family: "myfont";
    font-size: 35px;
  }
  .slick-prev {
    transform: rotate(90deg) translate(0, -50%);
  }
  .slick-next {
    transform: rotate(-90deg) translate(0, -50%);
  }
}
.partners {
  .slider-nav {
    margin-top: 0;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}
.partners-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.single-authors {
  .author-content {
    margin-bottom: 50px;
  }
}
.author-block {
  .author-title:hover {
    text-decoration: underline;
  }
}

/* Author card (article footer) */
.author-box-wrap {
  padding-top: 0;
  padding-bottom: 40px;
}

.author-box {
  max-width: 640px;
  margin: 24px auto;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 3px 14px rgba(229, 9, 20, 0.22);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.author-box .author-photo {
  flex-shrink: 0;
}

.author-box .author-photo a {
  display: block;
  line-height: 0;
}

.author-box .author-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 4px;
}

.author-box .author-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: static;
  min-width: 0;
}

.author-box .author-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #ffffff;
  line-height: 1.3;
}

.author-box .author-name a {
  color: inherit;
  transition: color 0.2s ease;
}

.author-box .author-name a:hover {
  color: #FFD300;
}

.author-box .author-role {
  font-size: 14px;
  color: #b3b3b3;
  margin-top: 4px;
  line-height: 1.35;
}

.author-box .author-dates {
  font-size: 13px;
  color: #888888;
  margin-top: 10px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-box .author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.author-box .author-socials a {
  color: #cfcfcf;
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.author-box .author-socials a:hover {
  color: #FFD300;
  opacity: 1;
  transform: scale(1.1);
}

.author-box .author-socials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.author-box .author-socials a:hover svg {
  stroke: currentColor;
}

@media (max-width: 768px) {
  .author-box {
    max-width: 100%;
    padding: 20px;
    gap: 18px;
  }

  .author-box .author-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .author-box .author-photo img {
    margin-top: 0;
  }

  .author-box .author-content {
    align-items: center;
  }

  .author-box .author-socials {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .author-box {
    padding: 16px 14px;
    gap: 14px;
  }

  .author-box .author-photo img {
    width: 72px;
    height: 72px;
  }

  .author-box .author-name {
    font-size: 17px;
  }

  .author-box .author-role {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .author-box .author-socials {
    gap: 10px;
  }

  .author-box .author-socials svg {
    width: 15px;
    height: 15px;
  }
}

.single-authors .author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.single-authors .author-socials a {
  color: #cfcfcf;
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.single-authors .author-socials a:hover {
  color: #FFD300;
  opacity: 1;
  transform: scale(1.1);
}

.single-authors .author-socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.contacts-item {
  margin-bottom: 15px;
  font-size: 20px;
  a {
    font-size: 20px;
  }
}
.contacts-row {
  display: flex;
  justify-content: space-between;
}
.contacts-info {
  width: 25%;
}
.contacts-row .map {
  width: 70%;
  iframe {
    width: 100% !important;
  }
}
h1 {
  margin-bottom: 25px;
}


.wheel {
  width: 100%;
  height: 100%;
  display: block;
}
.wheel.active {
  display: block;
  transition: opacity 1s,visibility 1s;
}
.wheel-open-btn {
  width: 70px;
  height: 70px;
  position: fixed;
  left: 15px;
  bottom: 15px;
  cursor: pointer;
  animation: 20s linear infinite wheel-btn-rotate;
  z-index: 10;
}
@keyframes wheel-btn-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.wheel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wheel-container {
  height: 90%;
  aspect-ratio: 1/1;
  position: relative;
}
.wheel-container.hide {
  display: none;
}
.wheel-container::before {
  content: '';
  display: block;
  width: 20px;
  height: 35px;
  background-image: url('../img/wheel_one.svg');
  background-size: cover;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.wheel-body {
  position: relative;
  -webkit-transform: rotate(0);
  transform: rotate(0)
}

.wheel-body.active {
  -webkit-animation: 6s cubic-bezier(.25,.75,.5,1.05) forwards wheel-rotate;
  animation: 6s cubic-bezier(.25,.75,.5,1.05) forwards wheel-rotate;
}
@keyframes wheel-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  80% {
    -webkit-transform: rotate(976deg);
    transform: rotate(976deg);
  }
  90% {
    -webkit-transform: rotate(964deg);
    transform: rotate(964deg);
  }
  100% {
    -webkit-transform: rotate(970deg);
    transform: rotate(970deg);
  }
}
.banner-img img.wheel-main {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-img .wheel-btn {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  animation: 1.4s infinite pulse-btn;
}
@keyframes pulse-btn {
  0% {
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%,-50%) scale(1.05);
    transform: translate(-50%,-50%) scale(1.05);
  }
  100% {
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
  }
}
.wheel-btn-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.wheel-btn-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wheel-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.wheel-modal {
  max-width: 725px;
  width: 90%;
  height: 0;
  /*background-image: url('../img/wheel_modal_bg.svg');*/
  /*background-size: cover;*/
  background-color: #bd1717;
  border-radius: 8px;
  border: 2px solid #05c473;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 1s,visibility 1s,opacity 1s,-webkit-transform 1s;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.wheel-modal.active {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
  visibility: visible;
  height: auto;
}
.wheel-modal-close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -15px;
  right: -15px;
}
.wheel-modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
}
.wheel-modal-bg.active {
  display: block;
}
.wheel-modal-img {
  max-width: 200px;
  margin: -40px auto 0;
}
.wheel-modal-price {
  background-color: #08a80b;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  padding: 3px 10px;
  margin: -50px auto 30px;
  display: inline-block;
}
.wheel-modal .price__row {
  display: flex;
  justify-content: center;
}
.wheel-modal-message {
  max-width: 450px;
  width: 100%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin: 0 auto 30px;
}
.wheel-modal-btn {
  max-width: 250px;
  width: 100%;
  padding: 5px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  border-radius: 4px;
  background-color: #08a80b;
  color: #fff;
  margin: 0 auto 30px;
  display: block;
  cursor: pointer;
}
.wheel-modal-btn:hover {
  background-color: #09a575;
}
.wheel-circle {
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-radius: 150%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wheel-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 150%;
  position: relative;
  background: conic-gradient(
          #ff5733 0deg 45deg,
          #33ff57 45deg 90deg,
          #3357ff 90deg 135deg,
          #ff33a1 135deg 180deg,
          #a133ff 180deg 225deg,
          #33fff3 225deg 270deg,
          #fff333 270deg 315deg,
          #ff8c33 315deg 360deg
  );
}
.wheel-sector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 50%); /* Формируем сектор с помощью CSS-маски */
  transform-origin: 50% 50%;

}

.wheel-sector-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0; /* Точка вращения - центр колеса */

  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.wheel-sector-text:nth-child(1) {
  transform: rotate(22.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(2) {
  transform: rotate(67.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(3) {
  transform: rotate(112.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(4) {
  transform: rotate(157.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(5) {
  transform: rotate(202.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(6) {
  transform: rotate(247.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(7) {
  transform: rotate(292.5deg) translateY(-700%) translateX(-50%);
}
.wheel-sector-text:nth-child(8) {
  transform: rotate(337.5deg) translateY(-700%) translateX(-50%);
}
.screens-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}
.screen-item img {
    border-radius: 10px;
}
.section-title {
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    margin-bottom: 35px;
}
.rating-results {
    display: flex;
    align-items: center;
}
.reviews-title {
    min-height: 40px;
    position: relative;
    padding: 0 15px;
    margin-bottom: 35px;
}
.reviews-title .section-title {
  margin-bottom: 0;
}
.rating {
    font-size: 13px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.error404 .text-404 a {
    font-weight: 600;
}





/* Adaptive */
@media (max-width: 1100px) {
  .header .nav {
    display: none;
  }
  .main-banner .girl {
    right: 0;
  }
  .offer {
    position: relative;
    z-index: 2;
  }
  .slots .slot {
    width: 25%;
  }
  .fixed-bar {
    display: none;
  }
}
@media (max-width: 1000px) {
  .bonus-banner .banner-img {
    display: none;
  }
  .banner:not(.main-banner) {
    height: auto;
    display: block;
    padding: 100px 15px 0;
  }
  .banner:not(.main-banner) .offer {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
  .banner:not(.main-banner) .offer-title {
    text-align: center;
  }
  .banner:not(.main-banner) .offer-desc {
    text-align: center;
  }
  .banner:not(.main-banner) .offer-btns {
    justify-content: center;
  }
  .banner-img {
    margin: 0 auto;
  }
  .advant-content {
    flex-wrap: wrap;
  }
  .advant-item {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .aviator-banner {
    height: auto;
    display: block;
    padding-top: 30px;
  }
  .aviator-banner .banner-img {
    max-width: 350px;
    width: 100%;
    margin-top: 30px;
  }
  .app-banner .banner-img {
    display: none;
  }
  .partners-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 800px){
  .footer-row {
    display: block;
    margin-bottom: 0;
    .custom-logo-link, .logo {
      margin: 0 auto 25px;
    }
    li {
      text-align: center;
    }
  }
  .footer-item {
    margin-bottom: 25px;
  }
    .screens-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .rating {
        position: static;
        display: flex;
        justify-content: center;
    }
}
/* 800 end */
@media (max-width: 700px) {
  body.fixed-header {
    padding-top: 56px;
  }
  .header .wrap {
    position: relative;
    padding-bottom: 0;
  }
  .header .custom-logo-link, .header .logo, .header .custom-logo-link img, .header .logo img {
    max-width: 100px;
  }

  .offer {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    text-align: center;
  }
  .banner.main-banner .offer {
    text-align: left;
    padding: 0;
  }
  .banner.main-banner .offer-title {
    text-align: left;
    font-size: clamp(1.35rem, 6vw, 2rem);
  }
  .banner.main-banner .offer-btn {
    margin: 0;
  }
  .offer-title {
    font-size: 35px;
  }
  .text-block-inner {
    display: block;
    padding: 30px 10px;
  }
  .text-block-content {
    margin-bottom: 30px;
  }
  .text-block-item {
    width: 100%;
  }
  .text-title {
    font-size: 30px;
  }
  .bonus-banner {
    height: auto;
    padding: 30px 0;
  }
  .apostas-banner.banner {
    display: block;
    padding-top: 50px;
  }
  .apostas-banner.banner .banner-img {
    position: static;
  }
  .apostas-banner.banner {
    height: auto;
  }
  .bonus-item {
    padding: 20px 16px;
  }
  .bonus-item-content {
    display: flex;
  }
  .bonus-item-icon {
    margin: 0 auto 25px;
  }
  .bonus-item-text {
    text-align: center;
    margin: 0 auto 25px;
  }
  .bonus-btn {
    max-width: 290px;
    width: 100%;
    margin: 0 auto;
  }
  .partners-row {
    grid-template-columns: 1fr 1fr;
  }
  .contacts-row {
    display: block;
  }
  .contacts-info {
    width: 100%;
    margin-bottom: 50px;
  }
  .contacts-row .map {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .slots .slot {
    width: 33.3333%;
  }
  .main-text-wrap {
    padding: 35px 15px;
  }
  .footer .pay-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pay-item {
    width: 25%;
  }
  .offer-btns {
    display: block;
  }
  .offer-btns .btn {
    margin: 0 auto 20px;
  }
  .offer-btns .btn:nth-child(2) {
    margin: 0 auto;
  }
  .section {
    margin-bottom: 60px;
  }

  .wheel-sector-text:nth-child(1) {
    transform: rotate(22.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(2) {
    transform: rotate(67.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(3) {
    transform: rotate(112.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(4) {
    transform: rotate(157.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(5) {
    transform: rotate(202.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(6) {
    transform: rotate(247.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(7) {
    transform: rotate(292.5deg) translateY(-500%) translateX(-50%);
  }
  .wheel-sector-text:nth-child(8) {
    transform: rotate(337.5deg) translateY(-500%) translateX(-50%);
  }

}

@media (max-width: 500px) {
  .app-btn.btn {
    padding: 5px 15px;
    margin-right: 15px;
  }
  .advant-item {
    width: 100%;
  }
  .single-authors .author-content,
  .author-block .author-content {
    display: block;
  }
  .author-block .author-img,
  .single-authors .author-img {
    margin: 0 auto 25px;
    display: block;
  }
  .author-block .author-content .dates,
  .single-authors .author-content .dates {
    position: static;
  }
    .header-btns .btn {
        width: auto;
        font-size: 12px;
        padding: 0 15px;
        line-height: 30px;
    }
}
@media (max-width: 400px) {
  .slots .slot {
    width: 50%;
  }
  .pay-item {
    width: 33.33333%;
  }
  .rate-banner {
    background-size: 65%;
  }
    .screens-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Goodman Brand Refresh ===== */

.page-anchor-nav {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-bottom: 0;
}

.page-anchor-nav__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}

.page-anchor-nav__inner::-webkit-scrollbar {
  display: none;
}

.page-anchor-nav__link {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  transition: background var(--gc-transition), color var(--gc-transition), border-color var(--gc-transition);
}

.page-anchor-nav__link:hover {
  background: var(--gc-yellow);
  color: var(--gc-yellow-text);
  border-color: var(--gc-yellow);
}

.bonus-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bonus-item {
  margin-bottom: 0;
  height: 100%;
}

.bonus-item-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  height: 100%;
}

.bonus-item-icon {
  margin-right: 0;
  max-width: 72px;
}

.bonus-item-text {
  margin-right: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.bonus-btn.btn,
.bonus-btn.btn-green {
  width: 100%;
  max-width: 220px;
  color: var(--gc-yellow-text) !important;
  background-color: var(--gc-yellow) !important;
  border: none !important;
  animation: none;
  line-height: 44px;
  font-weight: 700;
}

.bonus-btn.btn:hover,
.bonus-btn.btn-green:hover {
  color: var(--gc-yellow-text) !important;
  background-color: var(--gc-yellow-hover) !important;
}

.banner.main-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 24, 96, 0.93) 0%, rgba(42, 24, 96, 0.78) 38%, rgba(94, 53, 177, 0.35) 62%, rgba(94, 53, 177, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.banner.main-banner {
  background-size: cover;
  background-position: center right;
  text-decoration: none;
  color: inherit;
}

.banner.main-banner .offer {
  text-align: left;
}

.banner.main-banner .offer-btns {
  justify-content: flex-start;
}

.offer-btn.btn {
  color: var(--gc-yellow-text) !important;
  background-color: var(--gc-yellow) !important;
  animation: none;
}

.offer-btn.btn:hover {
  color: var(--gc-yellow-text) !important;
  background-color: var(--gc-yellow-hover) !important;
}

.advant-item-content {
  background: var(--gc-white);
  color: var(--gc-content-text);
  box-shadow: var(--gc-shadow-soft);
  border: 1px solid rgba(123, 87, 228, 0.12);
  transition: transform var(--gc-transition), box-shadow var(--gc-transition);
}

.advant-item-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(94, 53, 177, 0.18);
}

.advant-item .item__icon svg {
  stroke: var(--gc-purple-light);
}

.advant-item .item__text p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.screen-item img {
  border-radius: var(--gc-radius-md);
  transition: transform var(--gc-transition);
}

.screens-row:hover .screen-item img {
  transform: scale(1.02);
}

.faq-item {
  background: var(--gc-bg-card);
  border: 1px solid rgba(155, 127, 238, 0.2);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--gc-yellow);
  box-shadow: 0 4px 20px rgba(255, 225, 53, 0.12);
}

.reviews-item .inner {
  background: linear-gradient(145deg, var(--gc-bg-card) 0%, #261856 100%);
  border: 1px solid rgba(155, 127, 238, 0.2);
}

.stars svg {
  fill: var(--gc-yellow);
  stroke: var(--gc-yellow);
}

.slider-nav-item {
  color: var(--gc-purple-soft);
}

.slider-nav .slick-dots li.slick-active button::before {
  color: var(--gc-yellow);
}

.author-box {
  background: linear-gradient(135deg, var(--gc-bg-card) 0%, #261856 100%);
  border: 1px solid rgba(155, 127, 238, 0.25);
  border-radius: var(--gc-radius-lg);
}

.author-box .author-name a:hover,
.single-authors .author-socials a:hover {
  color: var(--gc-yellow);
}

.single-authors .main-text-wrap {
  background: var(--gc-content-bg);
  color: var(--gc-content-text);
  border-radius: var(--gc-radius-xl);
}

.single-authors .author-title {
  color: #1A1028;
}

.single-authors .author-info {
  color: var(--gc-content-muted);
}

.footer-row a,
.footer-item a {
  color: var(--gc-footer-muted);
  transition: color var(--gc-transition);
}

.footer-row a:hover,
.footer-item a:hover {
  color: var(--gc-purple-light);
}

.section-title {
  color: var(--gc-white);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
}

@media (max-width: 1000px) {
  .banner.main-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 24px;
    min-height: 300px;
  }

  .banner.main-banner .offer {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    text-align: left;
  }

  .banner.main-banner .offer-title {
    text-align: left;
  }

  .banner.main-banner .offer-btns {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .header .custom-logo-link img {
    max-height: 44px;
  }

  .header .page-anchor-nav {
    display: block;
  }

  .header .mobile-btn {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header .page-anchor-nav {
    display: none;
  }

  .header .mobile-btn {
    display: block;
  }
}

@media (max-width: 385px) {
  .header-btns .btn-green {
    display: none;
  }
}

@media (min-width: 1024px) {
  #text .main-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 32px;
  }

  #text .main-text-wrap > h1 {
    max-width: var(--gc-h1-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }

  #text .main-text-wrap > .main-text-content {
    max-width: var(--gc-content-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1100px) {
  .page-anchor-nav {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  body.fixed-header {
    padding-top: 56px;
  }

  .banner {
    min-height: 260px;
    padding: 24px 16px 28px;
    justify-content: center;
    align-items: flex-start;
  }

  .offer {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .offer-title {
    text-align: left;
  }

  .offer-btns {
    justify-content: flex-start;
  }

  .offer-btns .btn {
    max-width: 100%;
  }

  .header-btns .btn {
    min-width: 88px;
    padding: 0 14px;
    font-size: 12px;
    line-height: 36px;
  }

  .custom-logo-link img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .bonus-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bonus-item {
    padding: 14px 10px;
  }

  .bonus-item-icon {
    max-width: 56px;
  }

  .bonus-item-text {
    font-size: 12px;
  }

  .bonus-btn.btn,
  .bonus-btn.btn-green {
    max-width: 100%;
    font-size: 12px;
    line-height: 38px;
  }

  .page-anchor-nav__link {
    font-size: 12px;
    padding: 7px 12px;
  }

  .wrap {
    padding: 0 12px;
  }

  .bonus-item-text {
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 360px) {
  .header-btns .btn {
    min-width: 76px;
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .offer-title {
    font-size: 1.35rem;
  }

  .page-anchor-nav__link {
    padding: 6px 10px;
    font-size: 11px;
  }

  .header-btns .btn:last-child {
    margin-left: 8px;
  }
}