body { 
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #1c1c1c !important;
  color: #fff!important;
}

.header {
  position: absolute;
  z-index: 100;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.header__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  width: 100%;
  flex-direction: row;
}

.header__logo,
.header__menu {
  flex: 1;
}

.header__logo {
  display: flex;
  justify-content: flex-start;
  max-width: 130px;
	
}

.header__menu {
  display: flex;
  justify-content: flex-end;
}

.header select {
  border: none;
  box-shadow: none;
  background: #444A5C;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 17px;
  height: 39px;
  font-size: 12px;
}

@media only screen and (max-width: 576px) {
  .header__menu {
      padding: 0 7px;
  }
}

@keyframes slide-down {
  0% {
      opacity: 0;
      transform: translateY(-100%);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: #2E323D;
}

.heading-title {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: 42px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
  .heading-title {
      font-size: 28px;
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 7vh;
 
}

.footer {
  margin-top: auto;
  background: black;
  padding: 7px 0;
}

.footer__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__ul {
  display: flex;
  flex-direction: row;
}

.footer__li {
  margin: 20px 0;
}

.footer__li:not(:last-child) {
  margin-right: 30px;
}

.footer__a {
  color: #fff;
  opacity: 0.8;
}

.footer__a:hover {
  opacity: 1;
  color: #fff;
}


  .footer__logo {
    max-width: 200px!important;
  }

.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #ffffff;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }
  .mobile-back {
    display: block;
  }
  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #444752;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    position: relative;
    justify-content: flex-start;
  }
  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }
  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-submenu__list-item {
    padding: 0;
  }
  .nav__link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2392156863);
  }
  .nav__link::after {
    transform: rotate(-90deg);
  }
  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }
  .dropdown-submenu__title {
    padding: 0 30px;
  }
  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }
  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #444752;
    transition: all 0.3s;
  }
  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}
.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 16px;
  }
}
.bgmain {
  background: url("../img/bgmain.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.bgmain__h1 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}
.bgmain__info {
  padding: 120px 0;
}
.bgmain__btn-wrp {
  position: relative;
}
.bgmain__copied {
  display: none;
  font-size: 12px;
  padding: 7px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.bgmain__btn {

  margin-bottom: 20px!important;
  padding: 15px 40px!important;
  outline: none;
}
.bgmain__btn:active, .bgmain__btn:focus {
  outline: none;
  box-shadow: none;
}

@media only screen and (max-width: 576px) {
  .bgmain__h1 {
    font-size: 30px;
  }
  .bgmain__info {
    padding: 30px 0;
  }
}
.btn {
  display: inline-flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
}

.btn-red {
  background: #F51616!important;
  border: 1px solid #F51616!important;
  color: #fff!important;
}

.btn-gray{
  background: #444752!important;
  border: 1px solid #fff!important;
  color: #fff!important;
}
.btn-red:hover {
  background: #d90909!important;
  color: #fff!important;
}

.btn-transparent {
  border: 1px solid #F51616!important;
  background: transparent;
  color: #fff!important;
}
.btn-transparent:hover {
  background: #F51616!important;
  color: #fff!important;
}

.popular {
  background: black;
  padding: 60px 0;
}

section.promos {
  padding: 60px 0;
}
.popular__logos {
  margin-top: 60px;
}
.popular__case {
  background: #444752;
  padding: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular__case:hover {
  box-shadow: 0 15px 20px rgba(19, 21, 25, 0.6431372549);
}

@media only screen and (max-width: 576px) {
  .popular {
    padding: 30px 0;
  }
  .popular__logos {
    margin-top: 30px;
  }
}
.popular2 {
  background: #444752;
}

.popular__item {
  display: flex;
  flex-direction: column;
}
.popular__image {
  margin-bottom: 10px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.popular__image img {
  display: block;
}
.popular__top {
  margin-bottom: 15px;
}
.popular__btn {
  margin-top: auto;
  padding: 15px 40px;
  align-self: flex-start;
}

@media only screen and (max-width: 576px) {
  .popular__item {
    margin-bottom: 20px;
  }
}
.stat {
  padding: 60px 0;
}
.stat__counts {
  margin-top: 40px;
}
.stat__info {
  margin-top: 40px;
}

@media only screen and (max-width: 576px) {
  .stat {
    padding: 30px 0;
  }
  .stat__counts {
    margin-top: 20px;
  }
  .stat__info {
    margin-top: 40px;
  }
  .stat .count__item {
    margin-bottom: 30px;
  }
  .stat .counts__heading {
    margin-bottom: 15px;
  }
}
.screenshots {
  background: #2E323D;
  padding: 60px 0;
}
.screenshots__items {
  margin-top: 40px;
}
.screenshots__item img {
  height: 216px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 576px) {
  .screenshots {
    padding: 30px 0;
  }
  .screenshots__items {
    margin-top: 20px;
  }
  .screenshots__item img {
    height: 103px;
  }
}
.promos__items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap; /* Разрешаем элементам переноситься на следующую строку */
  padding-bottom: 40px;
}

.promos__item {
  flex: 1 1 100%; /* Устанавливаем элементам равное распределение по ширине */
  padding: 20px;
  background: #2E323D;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Выравниваем элементы по высоте */
  text-align: center;
  justify-content: flex-end;
}

.promos__info {
  flex: 1; /* Этот блок будет растянут на всю доступную высоту */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Располагаем элементы по вертикали равномерно */
}

.promos__info p {
  flex: 1; /* Растягиваем элемент на всю доступную высоту */
  display: flex;
  flex-direction: row;
  justify-content: center; /* Центрируем текст по вертикали */
}



.promos__btn {
  margin-top: auto;
  padding: 20px 30px;
}
.copy-icon {
  cursor: pointer;
  margin-left: 5px;
  color: #007bff; /* Цвет иконки (можно изменить) */
}
.copy-icon:hover {
  color: #0056b3; /* Цвет при наведении (можно изменить) */
}

.pobular__website {
  border: 1px solid #444752;
  background: transparent;
}

.websites2 {
  background: #2E323D;
  padding: 60px 0;
}
.websites2__wrp {
  margin-top: 40px;
}
.websites2__item {
  display: flex;
  flex-direction: column;
  background: #444752;
  padding: 30px;
  text-align: center;
}
.websites2__item-top {
  margin-bottom: 20px;
}

.websites2__item-top p {
  padding-top: 20px;
}

.websites2__btn {
  margin-top: auto;
  padding: 20px 60px;
  display: flex;
}

.catalog {
  padding: 60px 0;
}
.catalog table {
  width: 100%;
  overflow: hidden;
}
.catalog thead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3725490196);
}
.catalog thead td {
  color: rgba(255, 255, 255, 0.3725490196);
}
.catalog td {
  padding: 20px;
}
.catalog_btn {
  padding: 15px 20px;
}
.table-responsive td:nth-child(3) {
  max-width: 30%;
}

@media only screen and (max-width: 768px) {
  .catalog_btn {
    padding: 7px 12px;
    font-size: 12px;
  }
  .catalog table {
    font-size: 12px;
  }
  .catalog td {
    padding: 3px;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .catalog_btn {
    padding: 5px 7px;
    font-size: 10px;
  }
  .catalog table {
    font-size: 10px;
  }
  .catalog td {
    padding: 3px;
    text-align: center;
  }
  .table-responsive td:nth-child(3) {display: none}
}
.testi {
  padding: 60px 0;
}
.testi__info {
  margin-top: 40px;
  position: relative;
  padding-bottom: 40px;
}
.testi__item {
  padding: 20px;
  background: #2E323D;
  height: 100%;
}
.testi__title {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.testi__subtitle {
  font-size: 16px;
  opacity: 0.6;
  line-height: 1.3;
  margin-bottom: 20px;
}
.testi__wrapper {
  align-items: stretch !important;
}
.testi__slide {
  height: unset !important;
}
.testi__nav {
  display: flex;
  justify-content: center;
  margin-top: 3px;
}
.testi__btn {
  margin: 2px;
  padding: 7px;
  background: #2E323D;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.testi__btn:hover {
  background: #181a20;
}

@media only screen and (max-width: 576px) {
  .testi {
    padding: 30px 0;
  }
}
.heading {
  padding: 60px 0;
  background: #2E323D;
}

.article {
  padding: 60px 0;
}
.article__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 576px) {
  .heading, .article {
    padding: 30px 0;
    background: #2E323D;
  }
}
.heading-page {
  background: url("../img/bgmain.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.heading-page__info {
  padding: 40px;
  background: #2E323D;
  margin-top: 30px;
  margin-right: -80px;
  position: z-index 30;
}
.heading-page__banner {
  position: relative;
  z-index: -1;
  width: 100%;
}
.heading-page__banner img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .heading-page {
    padding: 30px 0;
  }
  .heading-page__info {
    padding: 15px;
    margin-top: 0;
    margin-right: 0;
  }
}
/*# sourceMappingURL=main.css.map */

a{
  text-decoration: none!important;
}


.promos__subtitle img {
  max-height: 100px;
    width: auto;
    margin: 0 auto;
}

a{
  color: white!important;
}
.fa-copy:before, .fa-files-o:before{
  color: white;
}
.bgmain {
  padding: 20px;
}

.bgmain__info {
  padding: 20px;
  border-radius: 8px;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-red {
  background-color: #e74c3c;
  color: #fff;
}

.btn-gray {
  background-color: #7f8c8d;
  color: #fff;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #212529;
    color: white;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.gallery img {
  width: 100px;
  margin: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .popup-content {
      width: 90%;
  }
}

/* Image Popup */
.image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.image-popup-content {
  max-width: 80%;
  max-height: 80%;
}

.close-image-popup {
  position: absolute;
  top: 140px;
  right: 80px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  z-index: 1001; /* Ensure it is above the image */
}


.ubermenu .ubermenu-item.ubermenu-active>.ubermenu-submenu-drop, .ubermenu-nojs .ubermenu-item:hover>.ubermenu-submenu-drop {
  display: flex!important;
  visibility: visible!important;
  opacity: 1!important;
  height: auto!important;
  max-height: none!important;
  flex-direction: column!important;
  width: 100px!important;
}


.ubermenu-main .ubermenu-submenu.ubermenu-submenu-drop {
  background-color: #444752!important;
}

.ubermenu-skin-grey-white .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-skin-grey-white .ubermenu-item-level-0.ubermenu-active > .ubermenu-target{
  background: none!important;
}

.ubermenu-skin-grey-white .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target, .ubermenu-skin-grey-white .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target, .ubermenu-skin-grey-white .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target{
  background: none!important;
}

.ubermenu-skin-grey-white{
  background: none!important;
}

.ubermenu-skin-grey-white .ubermenu-submenu.ubermenu-submenu-drop{
  border: none!important;;
}

.ubermenu-skin-grey-white.ubermenu-responsive-toggle{
  margin-top: 10px!important;
}


@media screen and (max-width: 959px) {
  .ubermenu-responsive-default.ubermenu.ubermenu-mobile-modal .ubermenu-nav {
      flex: none!important;
      overflow-y: auto !important;
      overscroll-behavior: contain;
      background-color: #444752;
  }
}

.ubermenu-skin-grey-white.ubermenu-responsive-toggle{
  position: absolute;
}

.img_t{
  width: 90px!important;
  height: 30px!important;
}

p{
  margin-bottom: 0!important;
}



.footer__wrp{ 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}


.promos__items .row {
  display: flex;
  flex-wrap: wrap;

}

.promos__item {

  border-radius: 5px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add some bottom margin to create space between rows */
}

.promos__subtitle {
  margin-bottom: 10px;
}

.promos__title {
  margin-bottom: 10px;
}

.promos__info {
  text-align: center; /* Centers the promo code text */
}

.promos__action {
  text-align: center;
  margin-top: 10px; /* Add some spacing between promo info and button */
}

.btn-red {
  background-color: #dc3545;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-red:hover {
  background-color: #c82333;
}

.text-center {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 50px;
}

@media screen and (max-width: 493px) {

.footer__ul{
  display: flex!important;
  flex-direction: column!important;
  text-align: center;

}
}

@media only screen and (max-width : 493px) {
  .footer{
      
      &__ul{
        display: flex!important;
        flex-direction: column!important;
        text-align: center!important;
      }
  }
}

.show-more {
  z-index: 10;
  position: relative;
}

.hidden {
  display: none;
}

.tournaments {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 40px 0;
}

.heading-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.tournament-card {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
	margin-bottom:30px;
}

.tournament-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.tournament-card .text-block {
    padding: 20px;
}

.tournament-card h4 a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.tournament-card h4 .copy-icon {
    color: #f00;
    cursor: pointer;
    margin-left: 10px;
}

.tournament-card p {
    color: #ccc;
}

.tournament-card .info {
    margin-bottom: 32px;
}

.tournament-card .btn-block {
    display: flex;
    justify-content: space-between;
}

.tournament-card .cus-btn {
    background-color: #f00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.tournament-card .cus-btn:hover {
    background-color: #d00;
}

.tournament-card .cus-btn.sec {
    background-color: #555;
}

.tournament-card .cus-btn.sec:hover {
    background-color: #444;
}

.t-logo {
    width: 150px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.t-logo:hover {
    transform: scale(1.05);
}



.promo-section {
    background-color: #1b1b1b;
    color: #fff;
    padding: 40px 0;
}

.title {
    font-size: 32px;
    color: #fff;
}

.promo-content {
    background-color: #2a2a2a;
    
    border-radius: 10px;
    transition: all 0.3s ease;
}

.promo-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.cus-btn.primary {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cus-btn.primary:hover {
    background-color: #c0392b;
}

.vote-section {
    margin-top: 20px;
}

.vote-btn {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-right: 10px;
}

.vote-btn:hover {
    background-color: #444;
}

.promo-image img {
    width: 150px;
     border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.text-light {
    color: #bbb;
}


.activate-button {
    background: linear-gradient(90deg, #ff007a, #ff8c00);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.activate-button:hover {
    background: linear-gradient(90deg, #ff8c00, #ff007a);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.all-codes {
    display: block;
    background-image: linear-gradient(45deg, #7a5fea 20%, #dc3545 100%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.all-codes:hover {
    background-image: linear-gradient(45deg, #7a5fea 20%, #dc3545 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-section {
    background-color: #1c1c2b;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.faq-section h2 {
    text-align: center;
    color: #00aaff;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2b2b3a, #24243e);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.faq-item .question {
    display: flex;
    align-items: center;
}

.faq-item .question img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.faq-item .question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-item .answer {
    margin-top: 10px;
    padding-left: 50px;
}

.faq-item .answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}
.recent-wins-section {
    background-color: #1c1c2b;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    margin-top: 20px;
}

.recent-wins-section h2 {
    text-align: center;
    color: #00aaff;
    margin-bottom: 20px;
}

.win-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2b2b3a, #24243e);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    padding: 10px;
}

.win-item img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 10px;
}

.win-details h3 {
    font-size: 18px;
    margin: 0;
    color: #ffaa00;
}

.win-details p {
    margin: 5px 0;
    font-size: 16px;
}
.imgol{
	border-radius:30px
}

/* Логотип GGDrop в правом нижнем углу */
#floatingLogo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
	border-radius: 20px;
}

#floatingLogo img {
    
    height: 70px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

/* Эффект пульсации */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    }
    100% {
        transform: scale(1);
    }
}

/* Анимация при наведении */
#floatingLogo:hover {
    transform: scale(1.2);
}

/* Блок с карточками */
.promo-cards-section {
       padding: 40px;
       background-color: black;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    flex-direction: column;
}

.promo-cards-title {
    text-align: center;
    font-size: 32px;
    color: white; /* Ярко-зеленый акцент */
    margin-bottom: 40px;
}

/* Сетка карточек */
.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    background-color: #1c1c1c;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
}

.promo-thumb img {
    width: 100%;
    border-radius: 15px;
}

.promo-title {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc3545; /* Неоновый акцент */
	
}
.promo-titleol{
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc3545; /* Неоновый акцент */
	border: 3px dashed #d1d5db;	
	padding:2px;
}

/* Медиа запросы для мобильных */
@media (max-width: 992px) {
    .promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }
}
.bonus-section {
    padding: 60px 0;
    background-color: #1c1c1c;
    text-align: center;
    color: #fff;
}

.bonus-title {
    font-size: 2.5rem;
    color: white; /* Неоновый зеленый акцент */
    margin-bottom: 40px;
}

/* Оформление блока с "слот-машиной" */
.bonus-machine {
    display: inline-block;
    margin-top: 20px;
}

.promo-result {
    font-size: 1.5rem;
    padding: 20px;
    border: 2px solid #00ffb0;
    border-radius: 10px;
    margin-bottom: 20px;
    min-width: 300px;
    background-color: #111;
}

.bonus-btn {
    background-color: #00ffb0;
    color: #000;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.bonus-btn:hover {
    background-color: #00ffa0;
}
/* Стиль секции с бонусами */
.bonus-section {
    background: url('<?php bloginfo('template_url'); ?>/assets/img/cs-background.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.bonus-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* затемнение */
    z-index: 1;
}

.bonus-section .container {
    position: relative;
    z-index: 2;
}

.promo-result {
    font-size: 2em;
    color: #ffac61;
    margin-bottom: 30px;
}



.btn:hover {
    transform: scale(1.05);
    background-color: #ffac61;;
}

.pulse-effect {
    animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Стиль для всплывающего окна */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.promo-popup-content {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    cursor: pointer;
}

.promo-popup h2 {
    margin-bottom: 20px;
    color: #00ff00;
}

.promo-popup p {
    margin-bottom: 20px;
    color: #fff;
}

.promo-popup .btn {
    margin-top: 10px;
}


.ggdrop-rating-section {

    padding: 60px 0;
    color: #fff;

    position: relative;
    overflow: hidden;
}
.ggs-rating-section {

    padding: 60px 0;
    color: #fff;

    position: relative;
    overflow: hidden;
}


.ggdrop-rating-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 500px;
    width: 80%; /* Покрывает правую часть экрана */
    height: 100%;
    background: url('<?php bloginfo('template_url'); ?>/assets/img/oput.png') no-repeat center right;
    background-size: contain;
    opacity: 0.7; /* Полупрозрачное изображение */
    z-index: 1;
}

.ggmain-rating-section {
 padding:40px;
}
.ggmain-rating-section{

}

.ggs-rating-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 500px;
    width: 80%; /* Покрывает правую часть экрана */
    height: 100%;
    background: url('<?php bloginfo('template_url'); ?>/assets/img/ggs/ggsprize.png') no-repeat center right;
    background-size: contain;
    opacity: 0.7; /* Полупрозрачное изображение */
    z-index: 1;
}


.rating-title {
    font-size: 1.75em;

}

.rating-stars {
    font-size: 2em;
    color: #dc3545;
    display: flex;
	justify-content: center;

}

.star {
    margin: 0 5px;
}

.full-star:before {
    content: '\2605'; /* Unicode для полной звезды */
}

.half-star:before {
    content: '\2605'; /* Unicode для половины звезды */
    opacity: 0.5;
}

.rating-value {
    font-size: 1.2em;
    margin-top: 10px;
    color: #dc3545;
}

.ggdrop-advantages h3 {
 padding-bottom:20px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
}

.advantages-list li {
   
    color: #adb0bc;
}

.advantages-list li i {
    margin-right: 10px;
    color: #dc3545;
}

.ggdrop-promo-benefits h3 {
	padding-top:20px;
    padding-bottom:20px;
}

.promo-benefits-list {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
}

.promo-benefits-list li {

    color: #adb0bc;
}

.promo-benefits-list li i {
    margin-right: 10px;
    color: #dc3545;
}

.ggdrop{
	color:#dc3545;
	text-transform: uppercase;
}

/* Основная секция FAQ */
.section-faq {
    padding: 60px 0;
    background: linear-gradient(135deg, black 50%, #1c1c1c 50%);
    color: #f9f9f9; /* Светлый текст */
}

.section-faq-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #dc3545; /* Яркий акцент для заголовка */
    margin-bottom: 50px;
    text-transform: uppercase;
    margin-bottom: 40px !important;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-question-block {
    background-color: #1a1a1a;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 15px;
    border: 1px solid #423f38;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}


.faq-question-title {
    font-size: 18px;
    color: #adb0bc;
    margin: 0;
    text-transform: none;
}

.faq-answer {
    display: none; /* Скрываем ответ по умолчанию */
    padding-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #dcdcdc; /* Светлый цвет для текста */
}

.faq-question-block.open .faq-answer {
    display: block; /* Отображаем ответ, если блок открыт */
}

.faq-toggle-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #dc3545; /* Цвет иконки */
    transition: transform 0.3s ease;
}

.faq-question-block.open .faq-toggle-icon {
    transform: translateY(-50%) rotate(45deg); /* Анимация иконки при открытии */
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .section-faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question-title {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 14px;
    }
}
/* Стиль для попапа */

/* Колесо фортуны */
.fortune-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.fortune-wheel img {
    width: 200px;
    height: 200px;
    transition: transform 5s ease-out;
}

/* Эффект кнопки */
.pulse-effect {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.app-primary-btn:hover {
    color: white;
}
.btno{
	background-color: #0f161b;
}

.slider__content{
	display:flex;
	flex-direction: column;
	justify-content:center;
}

#breadcrumbs{

    padding-top: 40px;
}

.otstup{
	padding-bottom:20px;
}

.promo-button-group{

}
h1{
	margin:0;
}

.rating-image{
	float:left;
	    max-width: 500px;
}
.rating-content{
	float:right;
}
.ggdrop-rating-ol{
	overflow:hidden;
	padding-top: 60px;
  background-color: black;
}

.ggdrop-vote {
    margin-top: 20px;
}

.vote-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
	justify-content: center;
}

.styled-btn {
    background: linear-gradient(135deg, #ffac61, #f4a21a);
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.styled-btn i {
    font-size: 18px;
}

.styled-btn:hover {
    background: linear-gradient(135deg, #f4a21a, #ffac61);
    box-shadow: 0px 5px 15px rgba(255, 165, 0, 0.6);
}

.thumbs-up-btn {
    background: linear-gradient(135deg, #32cd32, #28a745);
}

.thumbs-up-btn:hover {
    background: linear-gradient(135deg, #28a745, #32cd32);
}

.thumbs-down-btn {
    background: linear-gradient(135deg, #ff6347, #ff4500);
}

.thumbs-down-btn:hover {
    background: linear-gradient(135deg, #ff4500, #ff6347);
}

.styled-btn:disabled {
    background: #555;
    cursor: not-allowed;
}

#voteMessage {
    text-align: left;
    font-size: 14px;
}

.app-download-promo {
    background: black;
    padding: 60px 0;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.app-download-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.app-download-content {

    padding: 30px;
}

.app-download-title {
    font-size: 2.5em;
    color: #dc3545;
    margin-bottom: 20px;
}

.app-download-subtitle {
  
    margin-bottom: 30px;
    color: #adb0bc;
}

.app-download-benefits {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.app-benefit-item {
    width: 50%;
    display: flex;
	align-items: center;
    
   
  
    color: #fff;
}

.app-benefit-item i {
    font-size: 2em;
    margin-right: 15px;
    color: #dc3545;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.app-btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block;
}

.app-primary-btn {
    background-color: #dc3545;
    color: #000;
	font-weight:400;
}

.app-primary-btn:hover {
    background-color: #555;
}

.app-secondary-btn {
    background-color: #555;
    color: #1a1a1a;
	font-weight:400;
}

.app-secondary-btn:hover {
    background-color: #dc3545;
    color: #fff;
}

.app-download-qr {
    margin-top: 20px;
}

.app-download-qr p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #fff;
}

.app-qr-code {
    width: 100px;
}

.app-download-image {
    width: 40%;
    position: relative;
}

.app-download-img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* Анимация для картинки приложения */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ffac61!important;
    border-color: #ffac61!important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #ffac61!important;

}

.rating-container{
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    
}

@media (max-width: 963px) {
    .rating-container {
    display: flex; 
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
    }


@media (max-width: 730px) {
   .app-download-content {
    width: 80%;


    }
}



.promo-code-section {
    background-color: #222;
    color: #eaeaea;
    padding: 20px;
    border-radius: 8px;
    max-width: 1120px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.promo-code-section h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: white;
}

.promo-short-text {
    color: #b0b0b0;
    font-size: 16px;
}

.promo-full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #d3d3d3;
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.6;
}

.promo-full-text p {
    margin: 0;
}

.toggle-details {
    display: inline-block;
    margin-top: 10px;
    color: #45f882;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.toggle-details:hover {
    color: #16a085;
}

/* Общий стиль для секции */
.slider__area {
  background: linear-gradient(135deg, black 50%, #1c1c1c 50%);
 
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #d1d5db;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    flex-direction: row;
}

/* Flexbox для выравнивания содержимого */
.slider-activee {
 
    align-items: center;
    width: 100%;
}

/* Контент с кнопками */
.slider__content {
    flex: 1;
   
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
	align-items: center;
}

/* Заголовок */
.slider__content h1 {
    font-size: 32px;
    color: white;
    font-weight: bold;

}

/* Блок кнопок и промокодов */
.promo-button-group {
    display: flex;
    align-items: center;
    gap: 15px;
   
}

.promo-code-box {
    background: black;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #374151;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.promo-text {
    color: #9ca3af;
    font-size: 16px;
}

.promo-code {
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
}

/* Кнопка копирования */
.copy-btn img {
    width: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.copy-btn img:hover {
    transform: scale(1.1);
}
.copy-btn{
  background: none;
  border: none;
}
/* Стиль кнопки */
.register-btn {
    color: #ffffff;
    background: #22c55e;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.register-btn:hover {
    background: #16a34a;
}

/* Изображение */
.slider__img {
    flex: 1;

    text-align: right;
}

.slider__img img {
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.oll {
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

/* Общий стиль для затемнённого фона попапа */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Основной блок попапа */
.promo-popup-content {
    background: #1f2937;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    color: #d1d5db;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Кнопка закрытия попапа */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #0a84ff;
}

/* Заголовок и описание в попапе */
.promo-popup-content p {
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 20px;
	
}

.promo-popup-content p:first-of-type {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

/* Кнопка для скачивания APK */
.btn-primary {
    display: inline-block;
    color: #ffffff;
    background: linear-gradient(90deg, #1da1f2, #0a84ff);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0a84ff, #1da1f2);
    transform: scale(1.05);
}

/* Секция с преимуществами приложения */
.app-benefits {
    margin-top: 20px;
    text-align: left;
}

.app-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-benefits li {
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.app-benefits li::before {
    content: "✓";
    color: #10b981;
    margin-right: 8px;
}
.ggmain-rating-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ggmain-rating-section .col-lg-8,
.ggmain-rating-section .col-lg-4 {
    flex: 1;
}

.ggmain-rating-section .col-lg-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ggmain-rating-section .right-image {
    width: 500px;
    height: auto;
}
.ole{
	display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 832px) {
	.oll{
		flex-direction: column;
		text-align: center;
	}
	.promo-button-group{
		justify-content:center;
	}
	.slider__btn{
		align-items:center;
		padding-bottom: 40px;
	}
	.slider__content{
		padding:0;
	}
	.ole{
		flex-direction:column;
	}
	.slider-activee{
		display:inline;
	}
	
		.ggmain-rating-section .container{
			display:inline;
		}
	.app-download-content{
		width:100%;
	}
	.app-download-content{
		padding:10px;
	}
}


/* General Layout */
.tournament-area {
  background-color: #121212; /* Dark background */
    padding: 40px 20px;
  color: #f2f2f2;
}
.tournament-areaa {
  background-color: black; /* Dark background */
    padding: 40px 20px;
  color: #f2f2f2;
}

.section__title h3.title {
  color: #ff4b4b; /* Neon red for emphasis */
  font-weight: bold;
  font-size: 2rem;
}

.tournament__box-wrap {
  position: relative;
  background-color: #1b1b1b; /* Dark box background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tournament__box-wrap:hover {
  transform: scale(1.05); /* Subtle scale effect */
}

.tournament__box-price,
.tournament__box-prize {
  color: #dc3545; /* Neon orange for icons and text */
  font-weight: bold;
	padding-bottom: 20px;
}

.tournament__box-countdown .time-count {
  background-color: #272727;
  color: #f2f2f2;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.tournament__box-caption .title {
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tournament__box-caption .title img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Buttons */
.tournament__box-activate .btn-primary {
  background-color: #ff4b4b; /* Neon red */
  color: #ffffff;
  border-radius: 20px;
  padding: 8px 20px;
  transition: background-color 0.3s ease;
}

.tournament__box-activate .btn-primary:hover {
  background-color: #ff6f6f;
}

/* Load More Button */
.load-more-active {
  background-color: #ff4b4b;
  color: #ffffff;
  border-radius: 20px;
  padding: 10px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more-active:hover {
  background-color: #ff6f6f;
}

/* SVG Customizations */
.main-bg,
.price-bg {
  fill: #121212;
  opacity: 0.8;
}
#loadMoreActive{
  width: 30%;
}

.active-codes .post-item {
    margin-bottom: 20px; /* Отступ снизу между карточками */
}

@media (min-width: 768px) {
    .active-codes .post-item {
        margin-bottom: 30px; /* Увеличенный отступ для планшетов и больших экранов */
    }
}
	#breadcrumbs {
    font-size: 16px!important;
    color: #fff!important;

    display: flex!important;
    align-items: center!important;
    gap: 10px!important;
}

#breadcrumbs a {
    color: #ff4b4b!important; /* Красный цвет для ссылок */
    text-decoration: none!important;
    transition: color 0.3s ease!important;
}

#breadcrumbs a:hover {
    color: #c82333!important; /* Оранжевый цвет при наведении */
}

#breadcrumbs span {
    color: #fff!important; /* Белый цвет для разделителей */
}

#breadcrumbs .breadcrumb_last {
    color: #fff!important; /* Белый цвет для последнего элемента */
    font-weight: bold!important;
}

.promo-button-group {
    text-align: center;
    margin: 20px 0;
}

.promo-code-box {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    display: inline-block;
    max-width: 600px;
}

.promo-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.promo-text span {
    font-weight: bold;
    color: #f39c12;
    cursor: pointer;
}

.promo-text span:hover {
    text-decoration: underline;
}


.promo-cards-section {
    background: black;
    padding: 40px 20px;
    border-radius: 10px;
}

.promo-cards-title {
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.gggdrop {
    color: #ff4b4b;
    font-weight: bold;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.promo-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.promo-thumb img {
   width: 350px;
    height: 250px;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.promo-content {
}

.promo-title {
    font-size: 20px;
    color: #ff4b4b;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-description {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}
.section-faq {
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    color: #fff;
}

.section-faq-title {
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Отзывы пользователей */
.user-reviews .review-box {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}
.user-reviews .review-box .review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.user-reviews .review-box .review-author {
    font-weight: bold;
    color: #dc3545;
}
.user-reviews .review-form .form-control {
    background: #1c1c1c;
    color: #fff;
    border: 1px solid #333;
}
.user-reviews .review-form .form-control::placeholder {
    color: #999;
}

/* Инструкция по применению */
.promo-instruction .instruction-steps .step {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    margin-bottom: 30px;
}
.promo-instruction .instruction-steps .step-title {
    font-size: 18px;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
}
.promo-instruction .instruction-steps p {
    font-size: 16px;
    line-height: 1.6;
}
