/* Общие стили */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #e8edf1;
    color: #fff;
}

h1,h2,h3 {
    line-height: 0.8;
    color: #224f7c;
    margin-left: 5px;
    font-size: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

ul {
    list-style: none;
    padding: 0; /* Убирает отступы списка */
    margin: 0; /* Убирает внешние отступы списка */
}

a {
    text-decoration: none;
}

.tit {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin: 0px 5px;
}

section {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0px 10px 0px;
    color: #fff;
    background-color: #215584;
    box-sizing: border-box;
    width: 100%;
    z-index: 2;
}

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

.logo img {
    max-height: 25px;
    width: 100%;
    display: block;
}

.menu .btn {
    margin-left: 5px;
}

.btn {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: #276aa6;
    color: #fff;
    cursor: pointer;
    border: none;
}

.btn.filled {
    background-color: #2a7e00;
    color: #fff;
    border: none;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.8;
}

/* Баннер */
.banner {
    text-align: center;
    padding: 30px 20px;
    background-color: #1A1F2E; /* Легкая версия header */
   
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.6), /* Верхняя тень */
        inset 0 -5px 10px rgba(0, 0, 0, 0.1); /* Нижняя тень */
    
}

.banner h1 {
    margin-bottom: 20px;
    position: relative;
}

.banner h1::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #ffe600;
    margin: 10px auto 0;
}

.mirror button {
    margin-top: 15px;
}

.mirror p {
    line-height: 1.5;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0px;
}

/* Форма для промокода */
.promo-box {
    text-align: center;
}

.promo-box input {
    padding: 5px;
    width: 70%;
    border: 1px solid #0854c3;
    border-radius: 5px;
    text-align: center;
    color: #536387;
    background: #fff;
}

.promo-box p {
    color: #aaa;
    margin: 10px 0;
}

/* Текстовый блок */


/* Бонус */
.bonus {
    padding: 25px 20px;
}

.bns {
    border-radius: 30px;
    text-align: center;
    padding: 15px;
}

.bns h2 {
    margin: 0;
}

.bns h2:after {
    display: none;
}





.bns {
    border: 1px solid #0542a3; /* Насыщенная обводка */
    background: radial-gradient(circle at 80% 50%, #3A7EFA 10%, #1A4DFE 40%, #0C3DAA); /* Градиент справа */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Глубокая тень */
    position: relative;
    padding: 15px;
    overflow: hidden;
}

/* Новый узор с волнами через SVG */
.bns::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M0 50 Q50 0 100 50 T200 50 L200 200 L0 200 Z' fill='%23ffffff' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 200px 200px; /* Размер узора */
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.bns p {
    color: #cdebfe;
}

.nopad {
    padding-bottom: 0 !important;
}

.promocode {
    color: #fff;
    border: 1px solid #1E6B3B; /* Насыщенная зелёная обводка */
    background: radial-gradient(circle at 80% 50%, #4CAF50 10%, #27AE60 40%, #1E6B3B); /* Градиент справа с зелёными оттенками */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Глубокая тень */
    position: relative;
    padding: 15px;
    overflow: hidden;
}

/* Узор */
.promocode::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M0 50 Q50 0 100 50 T200 50 L200 200 L0 200 Z' fill='%2300FF00' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 200px 200px; /* Размер узора */
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Шум */

.promoc {
    justify-content: center !important;
}

.promoc input {
    background-color: #e8edf1;
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    width: 214px;
    font-size: 13px;
}

.promoc img {
    width: 56px;
}

.promoc p {
    font-size: 11px !important;
    color: #e8edf1;
    text-align: center;
}

.promocode h2, .promocode p, .promocode button {
    position: relative;
    z-index: 3;
    color: #fdfdfd; /* Более белый текст для контраста */
}


.b-text {
    padding: 1px 15px;
    background-color: #fff;
    color: #276aa5;
    border-radius: 5px;
}


.ticker {
    background: linear-gradient(to right, #276aa6 50%, #02b55e 100%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 55px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}

.ticker-content span {
    margin-right: 20px; /* Отступы между элементами */
}

/* Анимация движения */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.app-section {
    background-color: #276aa6;
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 15px;
    font-size: 13px;
    overflow: hidden;
    line-height: 1;
    margin: 15px 0px;
}

.app-right img {
    max-height: 21px;
}

.app-section span {
    font-size: 12px;
}

.app-d {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.app-d span {
    text-transform: uppercase;
    font-size: 16.6px;
    font-weight: bolder;
}

img.app {
    height: 38px;
    width: 38px;
    margin-right: 10px;
}

.app-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: left;
}

.app-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iph {
    background-color: transparent;
    position: absolute;
    height: 190px;
    top: -10px;
    left: -105px;
}

.star-icons {
    display: flex;
    gap: 5px;
}

.star-icons li {
    width: 13.36px;
    height: 11.88px;
}

a.tik {
    text-decoration: none;
}

.bot {
    margin: 15px 0px;
}

.pod {
    margin: 10px 15px;
    list-style: disc;
}

/* Таблица */
tbale tr,th,td {
    border: 1px solid #e8edf1;
    background-color: #fff;
    color: #276aa6;
}

.facts-table tbale tr,th,td {
    color: #fff;
}

.table-block table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table-block th, .table-block td {
    padding: 10px;
    text-align: left;
}

.table-block th {
    background: #276aa6;
    color: #fff;
}

.table-block a {
    color: #fff !important;
}

/* Футер */
.footer {
    text-align: center;
    padding-top: 20px;
    background-color: #215584;
    margin-top: 20px;
}

.footer p {
    line-height: 1;
    font-size: 10px;
    color: #fcfcfc;
}

.footer .logo img {
    max-height: 30px;
}

.footer .ft {
    gap: 3px;
    margin-top: 12px;
}

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

.ft p {
    font-size: 10px;
}

.app-ft .app-right {
    text-align: left;
    justify-content: center; /* Центрирование по вертикали */
    line-height: 1;
}

.app-ft span {
    font-size: 16.6px !important;
    font-weight: bold;
    margin-left: 0px !important;
    text-transform: uppercase;
}

.footer .phone-icons {
    height: 50px;
}

.app-ft p {
    font-size: 13px !important;
    font-weight: normal;
    margin: 0px;
}

.footer .app-section {
    gap: 0px;
    padding: 0px;
    margin: 0px 0px 20px 0px;
    justify-content: center;
}

.footer .app-right {
    gap: 2px;
}

/* Меню */
/* Общие стили для иконок */

.menu-btn {
    border-top: 1px solid #1f2841;
    padding-top: 10px;
    padding-bottom: 5px;
    background: #fefefe;
    border-bottom: 1px solid #ccc;
    margin-top: 52px;
    z-index: 1;
    position: relative;
}

.menu-icon {
    height: 35px; /* Фиксированная высота */
    width: 35px; /* Ширина сохраняет пропорции */
    object-fit: contain; /* Поддерживает пропорции и вписывает в размеры */
    fill: #fff; /* Белое наполнение SVG */
}

/* Контейнер для элементов меню */
.menu-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 1200px;
}

/* Элементы списка */
.menu-item {
    text-align: center;
}

/* Ссылка в меню */
.menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.menu-link span {
    margin-top: 5px;
    font-size: 13px;
    color: #536387;
}

/* Цвет для первого элемента */
.menu-item.active .menu-link  {
  position: relative;
}

.menu-item.active .menu-link span {
  color: #2567a2; 
}

.menu-item:hover .menu-link span {
  color: #2567a2; 
}

.menu-item.active .menu-link::before {
  content: "";
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background-color: #2567a2;
    border-radius: 2px;
}

section.bonus .bns {
    padding: 15px 10px;
}

input.promocode-input {
    border: 2px solid #27AE60; /* Обводка в тон кнопке регистрации */
    color: #1E5635; /* Тёмно-зелёный текст */
    outline: none; /* Убрать стандартный фокус */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input.promocode-input:focus {
    border-color: #2ECC71; /* Яркий зелёный при фокусе */
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.5); /* Зелёная тень */
}


@media (max-width: 639px) {
    body {
        font-size: 12px !important;
    }

    .btn {
        font-size: 12px !important;
    }

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

    .mirror p {
        line-height: 1.5;
        font-size: 20px;
    }

    .banner {
        padding: 25px 20px;
    }

    .menu-icon {
        height: 22px;
        width: 22px;

    }

    .menu-item.active .menu-link::before {
        top: 51px;
    }
}

@media (max-width: 639px) {
    body {
        font-size: 12px !important;
    }

    .btn {
        font-size: 12px !important;
    }

    .logo img {
        max-height: 35px;
    }

    .mirror p {
        line-height: 1.5;
        font-size: 16px;
    }

    .banner {
        padding: 20px 20px;
    }

    .bonus {
        padding: 15px 20px;
    }

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

@media (max-width: 459px) {
    body {
        font-size: 14px !important;
    }

    .btn {
        font-size: 14px !important;
    }

    .head {
        
        gap: 10px;
    }

    .menu {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding-top: 2px;
    }

    .menu .btn {
        margin-left: 0px;
    }

    .logo img {
        max-height: 25px;
    }

    .btn {
        padding: 8px 25px;
        border-radius: 8px;
    }

    .banner {
        padding: 25px 15px;
    }

    .bns .btn {
        padding: 10px 25px;
    }

    h1,h2,h3 {
        font-size: 18px;
        margin-left: 2px;
        line-height: 1;
    }

    p {
        margin: 8px 0;
    }
    
    section.info-table table.facts-table th, table.facts-table td {
        padding: 12px 12px;
        font-size: 15px;
    }
}










.casino-calc {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: auto;
    margin-top: 25px;
  }
  .casino-calc__head {
    background: #276aa6;
    color: #fff;
    padding: 12px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  .casino-calc__tabs {
    display: flex;
    background: #e9eef7;
  }
  .casino-calc__tab {
    flex: 1;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    font-weight: normal;
    transition: background 0.2s;
    background: #f5f5f9;
    color: #276aa5;
  }
  .casino-calc__tab:hover {
    background: #2a7e00;
    color: #fff;
  }
  .casino-calc__tab.active {
    background: #2a7e00;
    color: white;
  }
  .casino-calc__form {
    padding: 24px;
    background: #f5f5f9;
  }
  .casino-calc__field {
    margin-bottom: 18px;
  }
  .casino-calc__field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #276aa5;
  }
  .casino-calc__wager-group {
    display: flex;
    gap: 12px;
  }
  .casino-calc__wager-select-wrap {
    flex: 1;
    position: relative;
    overflow: visible;
    z-index: 2;
  }
  .tooltip-text {
    white-space: normal;
    z-index: 9999 !important;
    max-width: 280px;
  }
  .casino-calc__field input,
  .casino-calc__field select {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .casino-calc__field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }
  .casino-calc__button {
    width: 100%;
    padding: 14px;
    background: #2a7e00;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 12px;
    font-weight: 600;
  }
  .casino-calc__results h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .casino-calc__results table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
  }
  .casino-calc__results td {
    padding: 14px 24px;
    border: 1px solid #ddd;
    position: relative;
    background: #f5f5f9;
  }
  .casino-calc__results td:nth-child(2) {
    background-color: #7eac2f;
    color: #fff;
    font-weight: 600;
  }
  .casino-calc__results td:first-child {
    font-weight: 500;
  }
  .casino-calc__results td:first-child::after {
    font-size: 11px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #999;
    color: #999;
    display: inline-block;
    text-align: center;
    line-height: 14px;
    margin-left: 6px;
    position: relative;
    cursor: help;
  }
  .tooltip {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    cursor: help;
  }
  .tooltip.mini {
    font-size: 10px;
    width: 14px;
    height: 14px;
    line-height: 13px;
    border: 1px solid #7eac2f;
    color: #7eac2f;
    border-radius: 50%;
    margin-left: 5px;
  }
  .tooltip.inside {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
  }
  .tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 230px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    z-index: 9999 !important;
    max-width: 280px;
  }
  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  .star {
    color: red;
    font-weight: bold;
    margin-left: 3px;
  }
  input#wager-multiplier {
    width: 50%;
  }

@media (max-width: 639px) {
    .casino-calc__head {
        font-size: 18px;
    }
}


.top-slots {
  margin-top: 23px;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-family: "Inter", sans-serif;
  color: #fff;
}

.top-slots__title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #222;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.top-slots__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #cfcfcf;
}

.slot__number {
  font-size: 20px;
  font-weight: bold;
  color: #224f7c;
  width: 30px;
  text-align: right;
  flex-shrink: 0;
  margin-top: 8px;
}

.slot__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
  background: #215584;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.slot__info {
  flex: 1;
}

.slot__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #224f7c;
}

h1,h2,h3 {
    font-size: 18px;
}

.slot__meta {
  font-size: 14px;
  color: #333333;
  margin-bottom: 3px;
}

.slot__desc {
  font-size: 13px;
  color: #276aa5;
  margin-bottom: 10px;
}

.slot__play {
  background: #2ecc71;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  white-space: nowrap;
  align-self: center;
}

.slot__play:hover {
  background: #27ae60;
}

.slot:first-child {
  padding-top: 0;
}
.slot:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 639px) {
  .slot__number {
    display: none;
  }
  .slot {
    align-items: flex-start;
  }
  .slot__logo {
    align-self: center;
  }
  .slot__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
  }

  .slot__play {
    margin-top: 12px;
  }
}

@media (min-width: 640px) {
  .slot__desc {
    margin-bottom: 0;
  }
  .slot__play {
    margin-left: auto;
  }
}

.slot__info .btn {
    display: block;
    width: 46px;
    margin-top: 8px;
}

.info-table {
  max-width: 95%;
  margin: 0 auto;
  padding: 20px;
  background: #276aa6;
  border-radius: 16px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.info-table h2 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #ffffff;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.facts-table th {
  text-align: left;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 240px;
  vertical-align: top;
  font-weight: 600;
}

.facts-table td {
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
}

.facts-table tr:nth-child(even) td,
.facts-table tr:nth-child(even) th {
  background-color: rgba(255, 255, 255, 0.07);
}

.facts-table a {
  color: #fff;
  text-decoration: underline;
}

.facts-table code {
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}


.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.facts-table th, .facts-table td {
  padding: 12px 16px;
  text-align: left;
}

.facts-table thead th {
  background-color: rgba(255, 255, 255, 0.2);
}

.facts-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.facts-table a {
  color: #fff;
  text-decoration: underline;
}