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

h1,h2,h3 {
    line-height: 1.2;
    background: #11192d;
    color: #fff;
    padding: 10px 30px;
    position: relative;
}

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

a {
    color: #063d36;
    text-decoration: none;

}

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

.tb {
    background: #fff;
    padding-bottom: 10px;
}

.tb p {
    padding: 0px 15px;
}

.tb button {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* Шапка */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #ffe600;
    box-sizing: border-box;
    background: #11192d;
}

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

.logo img {
    max-height: 60px; /* Регулируйте размер логотипа */
    display: block;
}

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

.btn {
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 6px;
    background: #063d36;
    color: #fff;
    cursor: pointer;
    border: none;

}

.btn.filled {
    background: #2fad00;
    color: #fff;
    border: none;
}

.btn:hover {
    opacity: 0.8;
}

.btn.outline {
    background: #23375d;
    color: #fff;
}

.btn.outline:hover {
    background: #2fad00;
    color: #fff;
    opacity: 1;
}

/* Баннер */
.banner {
    text-align: center;
    padding: 50px 20px;
    background: #1a1a22;
    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;
    background: #2c2c38;
    padding: 30px;
    border-radius: 10px;
}

.promo-box input {
    padding: 10px;
    width: 70%;
    margin: 10px 0;
    border: 1px solid #ffe600;
    border-radius: 5px;
    text-align: center;
    font-size: 1.2rem;
    color: #ffe600;
    background: #1d1d27;
}

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

/* Текстовый блок */
h2 {
    position: relative;
    
}

h1::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    background: #e4c880;
}

h2::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    background: #e4c880;
}

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

.bns div {
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    border: 6px #e4c880 solid;
    padding: 15px;
    background: #11192d;
    color: #9ba7ca;
}

.bns img {
    display: block;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    max-width: 400px;
}

.bns h2 {
    margin: 0;
    padding: 0;
    color: #e4c880;
}

.bns h2::before {
    content: none;
}

.bns h2:after {
    display: none;
}

/* Таблица */
.table-block table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table-block th, .table-block td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.table-block th {
    background: #9ab9bc;
    color: #063d36;
}

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

.footer a {
    color: #e4c880;
    text-decoration: underline;
}

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

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

@media (max-width: 1220px) {
    .bns {
        padding: 0;
    }
}

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

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

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

    .banner {
        padding: 25px 20px;
    }
}

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

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

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

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

    .banner {
        padding: 20px 20px;
    }

    .bonus {
        padding: 15px 20px;
    }

    .bns img {
        max-width: 340px;
    }

    .btn {
        font-size: 14px;
    }

    

}

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


    .menu {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        gap: 17px;
    }

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

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



    .banner {
        padding: 25px 15px;
    }

}

@media (max-width: 400px) {
    
    h1, h2, h3 {
        font-size: 14px;
    }

    .bns img {
        max-width: 292px;
    }

}