/*Обнуление*/
*{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{
    font-family: "Itim", serif;
    position: absolute;
    background: #ffffff
}
body, html {
    overflow-x: hidden;
}
header{
    padding: 0 20px;
    background-color: #EFEAFF;
}
.header__container{
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__navigation{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__navigation a{
    color: #000;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 75% */
}
.header__navigation a:hover{
    text-decoration: underline;
}
.header__navigation img{
    max-width: 60px;
}
/*--------------------*/
.hero{
    background: url('../images/hero-back.png') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding: 110px 20px;
}
.hero__container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.timer-block {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(106, 80, 167, 0.94) 0%, rgba(128, 103, 183, 0.94) 100%);
    padding:55px 40px;
    width: 600px;
    color: #F5F7FA;
    box-shadow: 0 6px 24px rgba(60, 37, 97, 0.12);
    text-align: center;
}
.timer-block h3 {
    color: #FFF;
    text-align: center;
    font-size: 29.648px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.6px; /* 133.565% */
    margin-bottom: 40px;
}
.timer {
    display: flex;
    justify-content: center;
    padding: 38px 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(60, 37, 97, 0.04);
    border-radius: 100px;
    background: #5A4195;
    gap: 40px;
}
.timer-segment {
    width: 62px;
    margin: 0 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-value {
    font-size: 50px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    background: none;
    color: #F5F7FA;
    display: block;
}
.timer-label {
    font-size: 18px;
    color: #E0DAF5;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.timer-btn {
    padding: 7px 40px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(60, 37, 97, 0.07);
    /*transition: background 0.15s, color 0.15s;*/
    border-radius: 30px;
    background: #5A4195;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    border: 2px solid #5A4195;
    transition: 0.2s;
}
.timer-btn:hover {
    background: #6A50A7;
    color: #F5F7FA;
    border: 2px solid #F5F7FA;
    transition: 0.2s;
}
/*--------------------*/
.number__container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /*justify-content: end;*/
}
.number__block{
    width: 100%;
    min-height: 150px;
    border-radius: 50px;
    border: 3px solid rgba(128, 103, 183, 0.28);
    background: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 15px;
}
.number__block-section{
    display: flex;
    align-items: center;
    gap: 20px;
}
.number__block-section h2{
    color: #5A4195;
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px; /* 100% */
}
.number__block-section button{
    /*max-width: 267.74px;*/
    /*height: 71px;*/
    padding: 21px 35px;
    border-radius: 22px;
    background: #5A4195;
    box-shadow: 4px 2px 10px 1px rgba(0, 0, 0, 0.46);
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: 0.2s;
}
.number__block-section button:hover{
    background-color: #8067B7;
    transition: 0.2s;
}
.number__block-section p{
    color: #5A4195;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px; /* 100% */
    margin-top: 5px;
    max-width: 600px;
}
.number__block-section-text{
    display: flex;
    flex-direction: column;
}
.number__block-section-button{
    display: flex;
    align-items: center;
    gap: 10px;
}
.number__block-section-button p{
    border-radius: 38px;
    background: #5A4195;
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.2px; /* 60% */
    padding: 8px 15px;
}
.number__block-section-button h2{
    color: #5A4195;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 114.286% */
}
.number__total{
    display: flex;
    align-items: center;
    gap: 25px;
}
.number__total p{
    color: #212529;
    text-align: right;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 150% */
}
.number__total a{
    padding: 15px 40px;
    border-radius: 30px;
    background: #5A4195;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    transition: 0.2s;
}
.number__total a:hover{
    background-color: #8067B7;
    transition: 0.2s;
}
/*--------------------*/
.work{
    padding: 50px 20px;
}
.work__container{
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}
.work__main{
    max-width: 675px;
}
.work__main-text{
    margin-bottom: 20px;
}
.work__main-text h2{
    color: #212529;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px; /* 120% */
    margin-bottom: 10px;
}
.work__main-text p{
    color: #212529;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}
/*--------------------*/
.table {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    background: #EFEAFF;
}
.table__container {
    background: #f4f0fc;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(110, 80, 183, 0.06);
    padding: 24px 18px 18px 18px;
    /*min-width: 370px;*/
    max-width: 1050px;
    width: 100%;
}
.table__row {
    display: flex;
    align-items: center;
    border-bottom: 3px solid #ece5fa;
}
.table__row:last-child {
    border-bottom: none;
}
.table__row--header {
    background: transparent;
    font-weight: bold;
    color: #6a50a7;
    border-bottom: 3px solid #dbccff;
    margin-bottom: 10px;
}
.table__cell {
    flex: 1 1 0;
    padding: 13px 10px;
    font-size: 21px;
    color: #4e3976;
    display: flex;
    justify-content: center;
}
.table__cell--header {
    font-size: 26px;
    color: #6a50a7;
    text-align: left;
    text-transform: capitalize;
}
.table__odds {
    display: inline-block;
    background: #5A4195;
    color: #fff;
    border-radius: 9px;
    padding: 5px 17px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}
/*--------------------*/
.check{
    padding: 30px 20px;
}
.check__container{
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.check__main{
    max-width: 635px;
}
.check__image2 img{
    display: none;
}
.check__main-text{
    margin-bottom: 20px;
}
.check__main h2{
    color: #212529;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px; /* 120% */
    margin-bottom: 10px;
}
.check__main p{
    color: #212529;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}




.results-card {
    position: relative;
    max-width: 550px;
    margin: 40px auto;
    background: linear-gradient(135deg, #F5F7FA 0%, #cabfff 100%);
    border-radius: 26px;
    box-shadow: 0 8px 32px 0 rgba(110,80,183,0.13);
    padding: 28px 28px 38px 28px;
    overflow: visible;
    font-family: 'Inter', Arial, sans-serif;
}

.results-card__bg-decor {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, #a694e8 50%, #8067b7 100%);
    box-shadow: 0 8px 20px 0 rgba(110,80,183,0.10);
    z-index: 1;
}

.results-card__bg-decor--left {
    top: -24px;
    left: 24px;
}

.results-card__bg-decor--right {
    top: -32px;
    right: 32px;
    width: 36px;
    height: 36px;
}

.results-card__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.results-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: #241f43;
    margin: 20px 0 12px 0;
    letter-spacing: 0.3px;
}

.results-card__info {
    display: flex;
    justify-content: center;
    gap: 34px;
    font-size: 1rem;
    color: #594fb6;
    margin-bottom: 18px;
    font-weight: 500;
}

.results-card__date,
.results-card__draw {
    display: inline-block;
}

.results-card__numbers {
    display: flex;
    justify-content: space-between;
    /*gap: 18px;*/
    margin-bottom: 32px;
}

.results-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
    color: #8067b7;
    padding: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 2px 8px 0 rgba(110,80,183,0.08);
    transition: box-shadow 0.2s;
}

.results-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    background: linear-gradient(90deg, #8067b7 0%, #6a50a7 100%);
    color: #F5F7FA;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 14px 0 rgba(110,80,183,0.08);
    cursor: pointer;
    margin: 0 auto;
    margin-top: 8px;
    transition: background 0.18s, color 0.18s;
}

.results-card__btn:hover {
    background: linear-gradient(90deg, #6a50a7 0%, #8067b7 100%);
    color: #fff;
}

.results-card__btn-icon {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-right: 2px;
}

.results-card__btn-text {
    font-weight: 600;
    font-size: 1.18rem;
    letter-spacing: 0.03em;
}
/*--------------------*/
footer{
    background: #EFEAFF;
    padding: 40px 20px;
}
.responsible__container{
    max-width: 1030px;
    margin: 0 auto;
}
.responsible__container h2{
    color: #5A4195;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 120% */
    margin-bottom: 20px;
}
.responsible__container p{
    color: #5A4195;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}
.help{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.help img{
    width: 140px;
}
.policy{
    display: flex;
    justify-content: center;
    gap: 60px;
}
.policy a{
    color: black;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-decoration: underline;
    margin-top: 30px;
}
.policy a:hover{
    text-decoration: none;
}
/*--------------------*/
@media(max-width: 1010px){
    .check__image img{
        max-width: 400px;
    }
}
@media(max-width: 870px){
    .work__image img{
        max-width: 350px;
    }
}
@media(max-width: 810px){
    .header__navigation img{
        max-width: 40px;
    }
}
@media(max-width: 700px){
    .work__container{
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: center;
    }
}
@media(max-width: 660px){
    .table__cell{
        font-size: 16px;
    }
    .check__image{
        display: none;
    }
    .check__image2{
        display: flex;
        justify-content: center;
    }
    .check__image2 img{
        display: block;
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    .check__main-text{
        text-align: center;
    }
}
@media(max-width: 560px){
    .number__block{
        display: flex;
        flex-direction: column;
    }
    .number__block{
        gap: 35px;
    }
}
@media(max-width: 500px){
    .header__container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .timer{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .table__odds{
        font-size: 12px;
        padding: 5px 5px;
    }
    .timer{
        padding: 20px;
    }
    .timer-value{
        font-size: 32px;
    }
}
@media(max-width: 415px){
    .responsible__container p{
        font-size: 16px;
    }
    .results-card__numbers{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
}



.custom-dropdown {
    position: relative;
    width: 267px;
    font-family: inherit;
}

.custom-dropdown__selected {
    width: 100%;
    padding: 21px 35px;
    border-radius: 22px;
    background: #5A4195;
    box-shadow: 4px 2px 10px 1px rgba(0, 0, 0, 0.46);
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-dropdown__selected:after {
    content: "";
    display: inline-block;
    margin-left: 14px;
    width: 13px;
    height: 13px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.25s;
}
.custom-dropdown.open .custom-dropdown__selected:after {
    transform: rotate(-135deg);
}
.custom-dropdown__list {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 68px;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 22px #5A419533;
    z-index: 20;
    border: 2px solid #5A4195;
    font-size: 22px;
    font-weight: 500;
}
.custom-dropdown.open .custom-dropdown__list {
    display: block;
}
.custom-dropdown__option {
    padding: 18px 32px;
    color: #5A4195;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
    white-space: nowrap;
}
.custom-dropdown__option:hover,
.custom-dropdown__option.selected {
    background: #8067B7;
    color: #fff;
}



.custom-dropdown-weeks {
    position: relative;
    width: 340px;
    font-family: inherit;
    margin-top: 10px;
}

.custom-dropdown-weeks__selected {
    width: 100%;
    padding: 21px 35px;
    border-radius: 22px;
    background: #5A4195;
    box-shadow: 4px 2px 10px 1px rgba(0, 0, 0, 0.46);
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.custom-dropdown-weeks__selected:after {
    content: "";
    display: inline-block;
    margin-left: 14px;
    width: 13px;
    height: 13px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.25s;
    position: absolute;
    right: 32px;
    top: 50%;
    translate: 0 -50%;
}
.custom-dropdown-weeks.open .custom-dropdown-weeks__selected:after {
    transform: rotate(-135deg);
}
.custom-dropdown-weeks__list {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 74px;
    max-height: 330px;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 22px #5A419533;
    z-index: 20;
    border: 2px solid #5A4195;
    font-size: 22px;
    font-weight: 500;
}
.custom-dropdown-weeks.open .custom-dropdown-weeks__list {
    display: block;
}
.custom-dropdown-weeks__option {
    padding: 18px 32px;
    color: #5A4195;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
    white-space: nowrap;
}
.custom-dropdown-weeks__option:hover,
.custom-dropdown-weeks__option.selected {
    background: #8067B7;
    color: #fff;
}



/*--------------------*/
/*RESULTS PAGE*/

.results {
    background: #fcffff;
    border-radius: 24px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(106, 80, 167, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    justify-content: space-between;
}

.results__info {
    flex: 1 1 300px;
    /*min-width: 280px;*/
}

.results__datetime {
    font-size: 21px;
    font-weight: 600;
    color: #6A50A7;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}

.results__draw {
    font-size: 1.1rem;
    font-weight: 500;
    color: #8067B7;
    margin-bottom: 18px;
}

.results__draw-number {
    font-weight: 700;
    color: #6A50A7;
}

.results__main-numbers-label {
    font-size: 1rem;
    color: #6A50A7;
    margin-bottom: 10px;
}

.results__numbers {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}

.results__number {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #8067B7, #6A50A7);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 16px rgba(106, 80, 167, 0.17);
}

.results__search {
    flex: 1 1 270px;
    /*min-width: 250px;*/
    align-self: flex-start;
    background: #f5f7fa;
    border-radius: 18px;
    box-shadow: 0 2px 10px 0 rgba(106, 80, 167, 0.05);
    padding: 22px 0;
}

.results__search-title {
    color: #6A50A7;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.results__search-subtitle {
    color: #8067B7;
    font-size: 18px;
    margin-bottom: 16px;
}

.results__form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.results__input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #8067B7;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #6A50A7;
    transition: border-color 0.2s;
}

.results__input:focus {
    border-color: #6A50A7;
}

.results__button {
    background: linear-gradient(90deg, #8067B7 0%, #6A50A7 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(106, 80, 167, 0.18);
    transition: background 0.2s;
}

.results__button:hover {
    background: linear-gradient(90deg, #6A50A7 0%, #8067B7 100%);
}

.results__table-wrap {
    width: 100%;
    margin-top: 24px;
}

.results__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    margin-top: 10px;
    box-shadow: 0 4px 24px 0 rgba(106, 80, 167, 0.05);
    border-radius: 18px;
    overflow: hidden;
}

.results__th {
    background: #6A50A7;
    color: #fff;
    font-weight: 700;
    padding: 14px 10px;
    text-align: left;
    border: none;
}

.results__tr:nth-child(odd) .results__td {
    background: #f5f7fa;
}

.results__tr:nth-child(even) .results__td {
    background: #ece8f7;
}

.results__td {
    padding: 13px 10px;
    color: #4c3679;
    border: none;
    font-size: 18px;
    border-bottom: 1px solid #e3dfff;
    vertical-align: middle;
}

.results__tr:last-child .results__td {
    border-bottom: none;
}

@media (max-width: 900px) {
    .results {
        flex-direction: column;
        gap: 24px;
        padding: 18px 20px;
    }
    .results__table-wrap {
        margin-top: 18px;
    }
    .results__info,.results__search{
        flex: auto;
    }
}
@media(max-width: 360px){
    .results__numbers{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}



.history {
    background: #f5f7fa;
    padding: 32px 0;
}

.history__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0 auto;
    max-width: 880px;
    list-style: none;
}

.history__item {
    background: #f5f7fa;
    border-radius: 28px;
    box-shadow: 0 6px 32px 0 rgba(106, 80, 167, 0.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 30px 22px 30px;
    gap: 28px;
}

.history__info {
    flex: 1 1 320px;
}

.history__datetime {
    font-size: 21px;
    font-weight: 700;
    color: #33235c;
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
}

.history__date,
.history__time {
    color: #33235c;
}

.history__draw {
    font-size: 1.08rem;
    font-weight: 500;
    color: #8067B7;
    margin-bottom: 14px;
}

.history__draw-number {
    font-weight: 700;
    color: #6A50A7;
}

.history__main-numbers-label {
    font-size: 1.02rem;
    color: #8067B7;
    margin-bottom: 10px;
}

.history__numbers {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
@media(max-width: 450px){
    .history__numbers{
        display: flex;
        gap: 5px;
    }

}
.history__number {
    /*width: 46px;*/
    /*height: 46px;*/
    padding: 20px;
    background: linear-gradient(135deg, #8067B7, #6A50A7);
    color: #fff;
    font-size: 1.32rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(106, 80, 167, 0.15);
    letter-spacing: 0.02em;
}

.history__dividends {
    color: #7b6dae;
    font-size: 21px;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 10px;
}

@media (max-width: 800px) {
    .history__item {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 16px;
        gap: 10px;
    }
    .history__dividends {
        margin-top: 8px;
        align-self: flex-end;
    }
    .history__info{
        flex: auto;
    }
}
@media(max-width: 400px){
    .history__number{
        padding: 12px;
    }
}



/*---------------------*/
/*CART PAGE*/

.checkout {
    background: #f5f7fa;
    padding: 60px 0;
}

.checkout__container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(106, 80, 167, 0.12);
    padding: 48px 36px 36px 36px;
    gap: 40px;
}

.checkout__left {
    flex: 1 1 58%;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.checkout__ticket {
    background: #f5f7fa;
    border-radius: 18px;
    padding: 24px 24px 20px 24px;
    box-shadow: 0 2px 8px rgba(106, 80, 167, 0.07);
    margin-bottom: 8px;
}

.checkout__ticket-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #33235c;
    margin-bottom: 16px;
}

.checkout__numbers {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0 0 18px 0;
    list-style: none;
    flex-wrap: wrap;
}

.checkout__number {
    /*width: 44px;*/
    /*height: 44px;*/
    padding: 17px;
    background: linear-gradient(135deg, #8067B7, #6A50A7);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 8px rgba(106, 80, 167, 0.07);
    transition: background 0.2s;
}
.checkout__number--empty {
    background: #edeafd;
    color: transparent;
}

.checkout__ticket-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.checkout__ticket-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #8067B7;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(106, 80, 167, 0.15);
    transition: background 0.2s;
}
.checkout__ticket-btn:hover {
    background: #6A50A7;
}

.checkout__ticket-info {
    margin-top: 8px;
    font-size: 21px;
    color: #7b6dae;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkout__form {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
}

.checkout__form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.checkout__input {
    flex: 1 1 0;
    border-radius: 12px;
    border: 1px solid #8067B7;
    padding: 13px 14px;
    font-size: 21px;
    color: #6A50A7;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
}
.checkout__input:focus {
    border-color: #6A50A7;
}

.checkout__right {
    flex: 0 0 300px;
    display: flex;
    align-items: flex-start;
}

.checkout__summary {
    background: #f5f7fa;
    border-radius: 18px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(106, 80, 167, 0.12);
    padding: 34px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.checkout__summary-icon {
    margin-bottom: 6px;
}

.checkout__summary-title {
    font-size: 24px;
    font-weight: 700;
    color: #33235c;
    margin-bottom: 10px;
}

.checkout__summary-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 21px;
    margin-bottom: 18px;
}

.checkout__summary-label {
    color: #7b6dae;
    font-weight: 600;
}

.checkout__summary-value {
    color: #33235c;
    font-weight: 700;
}

.checkout__pay-btn {
    background: linear-gradient(90deg, #8067B7 0%, #6A50A7 100%);
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 13px 46px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 2px 10px rgba(255, 224, 102, 0.15);
    transition: background 0.18s, color 0.18s;
}
.checkout__pay-btn:hover {
    background: #fff475;
}

@media (max-width: 1050px) {
    .checkout__container {
        flex-direction: column;
        gap: 28px;
        padding: 32px 10px;
    }
    .checkout__right {
        /*width: 100%;*/
        margin-top: 18px;
    }
}
@media(max-width: 438px){
    .checkout__numbers{
        display: flex;
        justify-content: center;
    }
}


/*--------------------*/
/*POLICY PAGES*/
.policy__container {
    max-width: 1020px;
    background: #fff;
    border-radius: 18px;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(106, 80, 167, 0.08);
    padding: 44px 30px 36px 30px;
}
.policy__title {
    color: #6A50A7;
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.03em;
}
.policy__section {
    margin-bottom: 32px;
}
.policy__subtitle {
    font-size: 25px;
    color: #8067B7;
    font-weight: 700;
    margin-bottom: 14px;
    margin-top: 10px;
    letter-spacing: 0.01em;
}
.policy__text {
    font-size: 18px;
    color: #33235c;
    line-height: 1.7;
    margin-bottom: 14px;
}
.policy__list {
    margin: 0 0 14px 0;
    padding-left: 22px;
    color: #4c3679;
    font-size: 1.05rem;
    line-height: 1.7;
}
.policy__list--columns {
    columns: 2;
    column-gap: 36px;
    margin-bottom: 10px;
}
.policy__list li {
    margin-bottom: 5px;
    font-size: 18px;
}
@media (max-width: 700px) {
    .policy__container {
        padding: 16px 7px;
    }
    .policy__list--columns {
        columns: 1;
    }
    .policy__title {
        font-size: 1.5rem;
    }
}



/*-----------------------*/
.age-popup {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.age-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(25,18,33,0.96);
    z-index: 0;
    transition: opacity .3s;
}
.age-popup__content {
    position: relative;
    z-index: 1;
    max-width: 390px;
    width: 94%;
    background: #22173a;
    border-radius: 24px;
    box-shadow: 0 8px 40px 0 rgba(56,32,96,0.18);
    padding: 36px 24px 30px 24px;
    color: #fff;
    text-align: center;
    animation: popup-in .4s;
}
@keyframes popup-in {
    0% { transform: scale(.8) translateY(30px); opacity: 0;}
    100% { transform: scale(1) translateY(0); opacity: 1;}
}
.age-popup__title {
    font-size: 2.2rem;
    color: #c892ff;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: .01em;
}
.age-popup__text {
    font-size: 18px;
    color: #e2d4fa;
    margin-bottom: 32px;
    line-height: 1.6;
}
.age-popup__actions {
    display: flex;
    justify-content: center;
    gap: 22px;
}
.age-popup__btn {
    min-width: 110px;
    padding: 12px 0;
    font-size: 1.08rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: #6a50a7;
    color: #fff;
    box-shadow: 0 2px 10px rgba(105,60,160,0.06);
    transition: background .22s;
}
.age-popup__btn--yes {background: #6a50a7;}
.age-popup__btn--yes:hover {background: #523f89;}
.age-popup__btn--no {background: #b24d4d;}
.age-popup__btn--no:hover {background: #9d2828;}
@media (max-width: 500px) {
    .age-popup__content {
        padding: 18px 6px 22px 6px;
        max-width: 98vw;
    }
    .age-popup__title {font-size: 1.2rem;}
    .age-popup__text {font-size: .97rem;}
}
/*--------------------*/

    .animated-block {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 1s cubic-bezier(.38,1.07,.55,.98), transform 0.7s cubic-bezier(.38,1.07,.55,.98);
        will-change: opacity, transform;
    }

    .animated-block.visible {
        opacity: 1;
        transform: translateY(0);
    }
/*--------------------*/
.cookie-popup {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #EFEAFF;
    box-shadow: 0 0 16px rgba(0,0,0,0.13);
    /*padding: 22px 0 18px 0;*/
    padding: 10px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: opacity 0.2s;
}

.cookie-popup__content {
    max-width: 1020px;
    width: 100%;
    /*background: #fff;*/
    border-radius: 16px;
    /*box-shadow: 0 2px 18px 3px rgba(80, 77, 68, 0.08);*/
    /*padding: 22px 32px 18px 32px;*/
    text-align: center;
    font-size: 18px;
}

.cookie-popup__btn {
    margin: 8px 8px 0 8px;
    padding: 2px 26px;
    font-size: 18px;
    border: none;
    border-radius: 7px;
    background: #5A4195;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-popup__btn:hover {
    background: #7d5ebf;
}

.cookie-popup__content a {
    color: #1565c0;
    text-decoration: underline;
}
