/* Обнуляем стили по умолчанию */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Подключаем шрифт Inter Bold */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.7ef6f6d.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Применяем шрифт ко всему body */
body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: Regular;
}

/* Стиль для шапки */
header {
    background-color: #12110f;
    padding: 10px 0;
    position: relative;
}

/* Контейнер внутри шапки */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Логотип */
.logo {
    max-height: 50px;
}

/* Навигация */
.header_nav {
    flex-grow: 1;
    text-align: center;
}

.header_nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.header_nav li {
    margin: 0 15px;
}

.header_nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.header_nav a:hover {
    text-decoration: underline;
}

/* Кнопки справа */
.links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

/* Стили для первой кнопки (btn1) */
.links .btn1 {
    color: #3ee6e0;
    text-decoration: none;
    padding: 10px 30px;
    background-color: #4c440f;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.links .btn1:hover {
    background-color: #f8dd0d;
}

/* Стили для второй кнопки (btn2) */
.links .btn2 {
    color: #f8dd0d;
    text-decoration: none;
    padding: 10px 30px;
    background-color: #1d4643;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.links .btn2:hover {
    background-color: #3ee6e0;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .header_nav {
        margin: 20px 0;
    }

    .links {
        margin-top: 10px;
        gap: 10px;
        flex-direction: column;
        padding: 0 15px;
        width: 100%;
        align-items: stretch;
    }

    .links .btn1, .links .btn2 {
        width: 100%;
        margin: 0;
    }
}

/* Стиль для подвала */
footer {
    background-color: #12110f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Контейнер подвала */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Стиль для навигации в подвале */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav li {
    list-style: none;
    margin: 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* НОВЫЙ БЛОК: 18+ и ответственная игра */
.footer-responsible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 10px;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.age-restriction {
    display: inline-block;
    background-color: #ff3b3f;
    color: white;
    font-weight: 900;
    font-size: 18px;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.responsible-text {
    color: #ddd;
    font-size: 15px;
    font-weight: 500;
}

/* Текст в подвале */
footer p {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-responsible {
        flex-direction: column;
        gap: 8px;
        background: none;
        padding: 10px 0;
    }
    
    .age-restriction {
        font-size: 16px;
    }
    
    .responsible-text {
        font-size: 14px;
    }

    footer p {
        margin-top: 10px;
        font-size: 12px;
    }
}

/* Основной стиль для body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

/* Контейнер для контента */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* === УВЕЛИЧЕННЫЕ ЗАГОЛОВКИ H1-H6 === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 42px;
    color: #000;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 32px;
    color: #000;
    margin-top: 40px;
}

h3 {
    font-size: 26px;
    color: #000;
    margin-top: 35px;
}

h4 {
    font-size: 22px;
    color: #000;
    margin-top: 30px;
}

h5 {
    font-size: 20px;
    color: #000;
    margin-top: 25px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    font-weight: 600;
}

/* Основные стили для абзацев */
p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Отступы от изображений и других блоков */
p + img,
p + section,
p + div {
    margin-top: 20px;
}

img + p,
section + p,
div + p {
    margin-top: 20px;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
}

/* Общий стиль для <ul>, <ol> и <li> на странице */
ul {
    padding-left: 25px;
    margin-bottom: 20px;
    list-style-type: disc;
}

ul li {
    margin-bottom: 10px;
}

/* Стиль для карточки казино */
.casino-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.casino-logo img {
    max-width: 100%;
    border-radius: 50%;
}

.casino-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.casino-details h3 {
    margin: 0;
    font-size: 22px;
}

.casino-details p {
    margin: 5px 0;
}

.star-rating {
    color: gold;
}

/* Стиль для таблицы с критериями */
.casino-criteria table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.casino-criteria th, .casino-criteria td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.casino-criteria th {
    background-color: #f2f2f2;
}

.casino-criteria tr:nth-child(even) {
    background-color: #f9f9f9;
}

.casino-criteria tr:hover {
    background-color: #f1f1f1;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .casino-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-details {
        padding-left: 0;
    }

    .casino-logo img {
        width: 60px;
        height: 60px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .why-choose ul {
        padding-left: 20px;
    }

    .casino-criteria table {
        font-size: 14px;
    }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    box-sizing: border-box;
}

/* === УВЕЛИЧЕННЫЕ ЗАГОЛОВКИ ВНУТРИ CONTENT-WRAPPER === */
.content-wrapper h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-wrapper h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.content-wrapper h4 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 16px;
    font-weight: 700;
}

.content-wrapper h5 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}

.content-wrapper h6 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-wrapper ul li,
.content-wrapper ol li {
    margin-bottom: 10px;
}

/* Блок казино */
.casino-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.casino-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    width: calc(33.333% - 10.67px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.casino-logo img {
    margin-bottom: 12px;
}

.casino-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 0;
}

.casino-details p {
    margin: 4px 0;
}

/* Адаптив под мобильные устройства */
@media (max-width: 768px) {
    .casino-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .casino-item {
        width: 100%;
    }

    .content-wrapper h1 {
        font-size: 32px;
    }

    .content-wrapper h2 {
        font-size: 26px;
    }

    .content-wrapper h3 {
        font-size: 22px;
    }
    
    .content-wrapper h4 {
        font-size: 20px;
    }
    
    .content-wrapper h5 {
        font-size: 18px;
    }
    
    .content-wrapper h6 {
        font-size: 16px;
    }
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.btn,
.promo-btn,
.btn-review {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.btn:hover {
    background-color: #0069d9;
}

.promo-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: #28a745;
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    min-width: 160px;
}

.promo-btn:active {
    background-color: #218838;
}

.copy-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.btn-review {
    background: #6c757d;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 6px;
}

.btn-review:hover {
    background-color: #5a6268;
}

/* Новый блок "Казино месяца" */
.casino-month {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.casino-month-header {
    text-align: center;
    margin-bottom: 20px;
}

.casino-month-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.casino-month-header p {
    font-size: 16px;
    color: #777;
}

.casino-item-month {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.casino-logo img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.casino-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.casino-details h3 {
    font-size: 22px;
    margin-bottom: 8px;
    margin-top: 0;
}

.casino-details p {
    margin: 4px 0;
}

.casino-details .casino-month-btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.casino-month-btn-site {
    width: auto;
    background: #007bff;
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.casino-month-btn-site:hover {
    background-color: #0069d9;
}

.casino-month-promo-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: #28a745;
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    min-width: 160px;
}

.casino-month-promo-btn:active {
    background-color: #218838;
}

.copy-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.casino-month-btn-review {
    width: auto;
    background: #ff5733;
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.casino-month-btn-review:hover {
    background-color: #c84e2d;
}

@media (max-width: 768px) {
    .casino-item-month {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo img {
        margin-bottom: 12px;
    }

    .casino-details .casino-month-btn-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .casino-month-btn-site, .casino-month-promo-btn, .casino-month-btn-review {
        width: 100%;
    }
}

.promo-hint {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.warning-icon {
    font-size: 16px;
    color: #f39c12;
}

.telegram-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #1f2732;
    border-radius: 12px;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}

.telegram-block img {
    width: 60px;
    height: 60px;
}

.telegram-content {
    flex: 1;
}

.telegram-content h3,
.telegram-content p {
    margin: 0;
    color: #fff;
}

.telegram-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.telegram-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #0088cc;
    color: white;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.telegram-btn:hover {
    background-color: #007ab8;
    box-shadow: 0 0 8px rgba(0, 136, 204, 0.4);
}

.telegram-icon {
    fill: white;
}

@media (max-width: 768px) {
    .telegram-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .telegram-content h3 {
        font-size: 20px;
    }

    .telegram-content p {
        font-size: 14px;
    }

    .telegram-btn {
        justify-content: center;
        width: 100%;
        max-width: 250px;
        margin-top: 10px;
    }
}

.telegram-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #229ED9;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.telegram-header-btn:hover {
    background-color: #1c8cc3;
    box-shadow: 0 0 8px rgba(34, 158, 217, 0.4);
}

.telegram-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
}

@media (max-width: 768px) {
    .telegram-header-btn {
        width: 100%;
        max-width: 240px;
        margin: 0px auto;
        justify-content: center;
        text-align: center;
    }
}

.header-telegram-text {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
}

.header-telegram-text span {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .header-telegram-text span {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (min-width: 769px) {
    .header-telegram-text span {
        font-size: 16px;
    }
}

.faq-section {
    background-color: #f9f9f9;
    padding: 10px 10px;
    border-radius: 12px;
    max-width: 100%;
    margin: 30px 0;
}

.faq-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    text-align: left;
}

.faq-list dt {
    font-size: 16px;
    margin-top: 20px;
    color: #333;
}

.faq-list dd {
    font-size: 14px;
    margin: 5px 0 15px 0;
    padding-left: 15px;
    color: #555;
    border-left: 3px solid #ccc;
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 20px;
    }

    .faq-list dt {
        font-size: 16px;
    }

    .faq-list dd {
        font-size: 15px;
    }
}

/* === СТИЛИ ДЛЯ ПРОМО-СЕКЦИИ С ФОНОВОЙ КАРТИНКОЙ === */
.promo-section {
    width: 100%;
    background-color: #f9f9f9;
    color: #fff;
    padding: 0px 0px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.promo-banner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: brightness(70%);
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Жирный заголовок — НЕ H1-H6 */
.welcome-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.welcome-description {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Кнопка ПОЛУЧИТЬ БОНУС */
.bonus-button {
    display: inline-block;
    background-color: #ff3b3f;
    color: #fff;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
}

.bonus-button:hover {
    background-color: #e63236;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    border-color: #fff;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .promo-banner {
        border-radius: 0;
        position: relative;
        height: 450px;
    }

    .promo-banner img {
        filter: brightness(60%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .promo-content {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        text-align: center;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .welcome-subtitle {
        font-size: 24px;
    }
    
    .welcome-description {
        font-size: 18px;
    }
    
    .bonus-button {
        padding: 14px 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-subtitle {
        font-size: 20px;
    }
    
    .welcome-description {
        font-size: 16px;
    }
    
    .bonus-button {
        padding: 12px 30px;
        font-size: 18px;
    }
}

.mirror-date {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.mirror-minimal {
    font-size: 14px;
    color: #fff;
    margin: 0 20px;
    padding: 5px 10px;
    border-left: 4px solid #f8dd0d;
    background-color: #1d4643;
    border-radius: 4px;
    display: inline-block;
    align-self: center;
}

.popular-slots {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.popular-slots ul {
    list-style: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

.popular-slots ul li {
    margin-bottom: 12px;
    font-size: 16px;
    text-align: center;
    color: #333;
}

.popular-slots ul li a {
    text-decoration: none;
    color: #1d72b8;
    font-weight: 500;
    transition: color 0.3s ease;
}

.popular-slots ul li a:hover {
    color: #ff6600;
}

.popular-slots ul li a:active {
    color: #ff4500;
}

.popular-slots h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #444;
    font-weight: bold;
    text-align: center;
}