/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    background:#050400;
    position: absolute;
    font-family: 'Inter', sans-serif;
}
body, html {
    overflow-x: hidden;
}
main{
    flex: 1;
}
/*-------------------------*/
.header{
    background: #120E0B;

}
.header__container{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}
.header__navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
}
.header__navigation a{
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.header__button a{
    color: #000;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 11px;
    background: linear-gradient(180deg, #FEFF95 0%, #FC8A1E 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}
.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.header__navigation {
    display: flex;
    gap: 42px;
    align-items: center;
}
@media (max-width: 870px) {
    .burger {
        display: flex;
    }
    .header__navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: #120E0B;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .header__navigation.active {
        right: 0;
    }
    .header__button {
        display: none;
    }
}

/*--------------------------*/
/* ===== Основной блок ===== */
.lottery {
    background: url("../images/main-back.png") no-repeat center center / cover;
    padding: 50px 20px;
}
.lottery__container {
    text-align: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== Jackpot ===== */
.lottery__jackpot {
    display: flex;
    justify-content: center;
    /*margin-top: 100px;*/
    margin-bottom: 80px;
}
.jackpot-circle {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 6px solid;
    border-image-slice: 1;
    border-width: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.6);
}
.lottery__amount {
    color: #FFFF8C;
    text-align: center;
    font-size: 74.31px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px; /* 64.594% */
    margin-bottom: 15px;
}
.lottery__text {
    color: #FFFFC7;
    text-align: center;
    font-size: 47px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 50px;
}
.lottery__button {
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}
.lottery__button:hover {
    background: linear-gradient(90deg, #ffdd55, #ffaa22);
}

/* ===== Timer (в линию) ===== */
.lottery__timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 100px 0;
}
.timer__item {
    width: 300px;
    height: 85px;
    background: rgba(28, 28, 28, 0.95);
    border-radius: 8px;
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.timer__value {
    font-size: 28px;
    font-weight: bold;
    color: #ff9900;
    line-height: 1.2;
}
.timer__label {
    font-size: 14px;
    color: #aaa;
}

/* ===== Features ===== */
.lottery__features {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.feature {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffcc33;
    border-radius: 12px;
    padding: 30px;
    width: 220px;
    text-align: center;
}
.feature__icon {
    width: 60px;
    margin-bottom: 15px;
}
.feature__text {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
}
/* ===== Основной блок ===== */
.lottery {
    background: url("../images/main-back.png") no-repeat center center / cover;
    padding: 50px 20px;
}
.lottery__container {
    text-align: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== Jackpot ===== */
.lottery__jackpot {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.jackpot-circle {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 6px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.6);
}
.lottery__amount {
    color: #FFFF8C;
    font-size: 74px;
    font-weight: 800;
    margin-bottom: 15px;
}
.lottery__text {
    color: #FFFFC7;
    font-size: 47px;
    font-weight: 800;
    margin-bottom: 50px;
}
.lottery__button {
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}
.lottery__button:hover {
    background: linear-gradient(90deg, #ffdd55, #ffaa22);
}

/* ===== Timer ===== */
.lottery__timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 80px 0;
    flex-wrap: wrap;
}
.timer__item {
    flex: 1 1 200px;
    max-width: 300px;
    background: rgba(28, 28, 28, 0.95);
    border-radius: 8px;
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.timer__value {
    font-size: 28px;
    font-weight: bold;
    color: #ff9900;
}
.timer__label {
    font-size: 14px;
    color: #aaa;
}

/* ===== Features ===== */
.lottery__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffcc33;
    border-radius: 12px;
    padding: 25px;
    width: 220px;
    text-align: center;
}
.feature__icon {
    width: 60px;
    margin-bottom: 15px;
}
.feature__text {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
}

/* ===== Адаптив ===== */
@media (max-width: 1024px) {
    .jackpot-circle {
        width: 400px;
        height: 400px;
    }
    .lottery__amount {
        font-size: 56px;
    }
    .lottery__text {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .jackpot-circle {
        width: 300px;
        height: 300px;
        padding: 20px;
    }
    .lottery__amount {
        font-size: 36px;
    }
    .lottery__text {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .lottery__features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .lottery {
        padding: 30px 15px;
    }
    .timer__item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/*-----------------------------*/
.how {
    padding: 50px 20px;
}

.how__container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how__title {
    color: #000;
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    background: url("../images/how-title-back.png") no-repeat center center / cover;
    padding: 40px 30px;
    max-width: 425px;
    border-radius: 15px;
}

.how__main {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.how__main-block {
    border-radius: 25px;
    border: 1px solid #FF8F00;
    background: linear-gradient(180deg, #453119 0%, #130C06 100%);
    flex: 1 1 calc(25% - 20px);
    max-width: 265px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.how__main-block img {
    margin-bottom: 30px;
    max-width: 100px;
    transition: transform 0.3s ease;
}

.how__main-block h2 {
    color: #F2F2F2;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
/* ===== Hover эффект ===== */
.how__main-block:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.7);
}

.how__main-block:hover img {
    transform: scale(1.1);
}
.how__main-block p {
    color: #F2F2F2;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
}

.how__main-block ul li {
    color: #F2F2F2;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 2px solid orange;
}

/* ====== Адаптив ====== */
@media (max-width: 1199px) {
    .how__main-block {
        flex: 1 1 calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 767px) {
    .how__main {
        flex-direction: column;
        align-items: center;
    }
    .how__main-block {
        flex: 1 1 100%;
        max-width: 400px;
    }
    .how__title {
        font-size: 28px;
        padding: 25px 20px;
    }
}


/*------------------------*/
.winners{
    background: url("../images/winners-back.jpg") no-repeat center center / cover;
    padding: 50px 20px;
}
.winners__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}
.winners__title {
    font-size: 36px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 200, 0, 0.8);
}
.winners__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.winner-card {
    background: rgba(28, 28, 28, 0.95);
    border: 2px solid #ffcc33;
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1 1 calc(33.333% - 30px);
    max-width: 380px;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.winner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.7);
}
.winner-card--highlight {
    border: 2px solid #ffdd55;
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.9);
    transform: scale(1.05);
}
.winner-card__icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}
.winner-card__icon img {
    width: 90px;
}
.winner-card__amount {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    margin: 5px 0;
}
.winner-card__sub {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 15px;
}
.winner-card__info {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}
.winner-card__badge {
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    color: #000;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .winner-card {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 768px) {
    .winners__list {
        flex-direction: column;
        align-items: center;
    }

    .winner-card {
        flex: 1 1 100%;
        max-width: 400px;
    }
}
/*--------------------------------------------*/
.security__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
}
.security__title {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    color: #000;
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    display: inline-block;
    padding: 14px 40px;
    border-radius: 8px;
    margin: 0 auto 40px auto;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.7);
}
.security__commitment {
    background: rgba(28, 28, 28, 0.95);
    border: 1px solid #ff9900;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.4);
}
.security__commitment-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc33;
    margin-bottom: 15px;
}
.security__commitment-text {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 12px;
}
.security__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}
.security__card {
    flex: 1 1 50%;
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    border-radius: 12px;
    padding: 25px;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.6);
}
.security__card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.security__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.security__list li {
    font-size: 16px;
    margin-bottom: 8px;
}
.security__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
}
.feature {
    background: rgba(28, 28, 28, 0.95);
    border: 2px solid #ffcc33;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.3);
}
.feature:hover {
    box-shadow: 0 0 35px rgba(255, 200, 0, 0.7);
    transform: translateY(-6px);
}
.feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: radial-gradient(circle, #ffd700, #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 200, 0, 0.5);
}
.feature__icon img {
    width: 36px;
    height: 36px;
}
.feature__title {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}
.feature__text {
    font-size: 15px;
    color: #ccc;
}

@media (max-width: 1024px) {
    .security__bottom {
        flex-direction: column;
    }
    .security__features {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------*/
.footer {
    background: #0d0d0d;
    color: #fff;
    padding: 60px 20px 30px;
}
.footer__container {
    max-width: 1300px;
    margin: 0 auto;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.footer__logo {
    font-size: 26px;
    font-weight: bold;
    color: #ffd700;
    margin: 0;
}
.footer__desc {
    max-width: 400px;
    color: #bbb;
    margin-top: 10px;
    font-size: 14px;
}
.footer__button {
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}
.footer__button:hover {
    background: linear-gradient(90deg, #ffdd55, #ffaa22);
}
.footer__middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}
.footer__col {
    flex: 1 1 30%;
    min-width: 250px;
}
.footer__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffd700;
}
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__list li {
    margin-bottom: 10px;
}
.footer__list a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}
.footer__list a:hover {
    color: #ffd700;
}
.footer__phone {
    font-size: 16px;
    font-weight: bold;
    color: #ffcc33;
    margin-top: 10px;
}
.footer__age {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}
.footer__partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.footer__partners img {
    max-height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: 0.3s;
}
.footer__partners img:hover {
    opacity: 1;
    filter: brightness(1) invert(0);
}
.footer__bottom {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 20px;
}
.footer__textblock {
    background: rgba(28, 28, 28, 0.95);
    border: 1px solid #ffcc33;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.4);
}
.footer__text-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
}
.footer__textblock p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
}


/*---------------------*/
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.age-popup__content {
    background: #1a1a1a;
    border: 2px solid #ffcc33;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 420px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(255,200,0,0.5);
}
.age-popup__title {
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 15px;
}
.age-popup__text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
}
.age-popup__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.age-popup__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.age-popup__btn--yes {
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    color: #000;
    box-shadow: 0 0 15px rgba(255,200,0,0.6);
}
.age-popup__btn--yes:hover {
    background: linear-gradient(90deg, #ffdd55, #ffaa22);
}
.age-popup__btn--no {
    background: #333;
    color: #fff;
    border: 1px solid #999;
}
.age-popup__btn--no:hover {
    background: #555;
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(28, 28, 28, 0.95);
    border: 2px solid #ffcc33;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255,200,0,0.4);
    z-index: 9999;
    display: none; /* скрыто по умолчанию */
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.cookie-banner__text {
    font-size: 15px;
    color: #ddd;
    margin: 0;
}

.cookie-banner__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-banner__btn--accept {
    background: linear-gradient(90deg, #ffcc33, #ff9900);
    color: #000;
    box-shadow: 0 0 15px rgba(255,200,0,0.6);
}

.cookie-banner__btn--accept:hover {
    background: linear-gradient(90deg, #ffdd55, #ffaa22);
}

.cookie-banner__btn--decline {
    background: #333;
    color: #fff;
    border: 1px solid #777;
}

.cookie-banner__btn--decline:hover {
    background: #555;
}
