/*Обнуление*/
*{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:#FCE9FF;
    position: absolute;
    font-family: Inter,serif;
}
body, html {
    overflow-x: hidden;
}
main{
    flex: 1;
}

/*--------------------*/
.header__container{
    max-width: 1210px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}
.header__logo{
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__logo h1{
    color: #5104B5;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 36px; /* 150% */
}
.header__navigation{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header__navigation a{
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    transition: 0.2s;
}
.header__navigation a:hover{
    color: #5104b5;
    transition: 0.2s;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}
.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #5104B5;
    border-radius: 2px;
    transition: 0.3s ease;
}

@media (max-width: 900px) {
    .header__burger {
        display: flex;
    }
    .header__navigation {
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 50;
    }
    .header__navigation a {
        font-size: 16px;
        color: #5104B5;
    }
    .header__navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header__burger.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}
/*--------------------*/
.hero{
    background: url('../images/hero-bg.webp') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding: 120px 20px;
    text-align: center;
}
.hero__container{
    max-width: 1210px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero__container h2{
    color: #FFF;
    text-align: start;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 67.2px; /* 120% */
    max-width: 730px;
}
.hero__container p{
    color: #FFF;
    text-align: start;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
    max-width: 780px;
}
.hero-notice {
    max-width: 630px;
    border-radius: 18px;
    border: 5px solid #7C4DFF;
    background: linear-gradient(90deg, #955CDF 0%, #5104B5 100%);
    padding: 14px 25px;
    color: #E3E3E3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    transition: all 0.4s ease;
    cursor: default;
    text-align: start;
}
.hero-notice:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(123, 0, 255, 0.4);
}
.hero-notice span {
    color: #E3E3E3;
    text-align: start;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 150% */
}
.hero__container a {
    border-radius: 13px;
    border: 5px solid #7C4DFF;
    background: linear-gradient(268deg, #955CDF 0%, #5104B5 100%);
    max-width: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 8px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.hero__container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(123, 0, 255, 0.5);
}


@media (max-width: 992px) {
    .hero {
        padding: 100px 20px;
    }
    .hero__container h2 {
        font-size: 42px;
        line-height: 52px;
        max-width: 600px;
    }
    .hero__container p {
        font-size: 18px;
        line-height: 28px;
        max-width: 600px;
    }
    .hero-notice {
        font-size: 13px;
        line-height: 20px;
        padding: 12px 20px;
        max-width: 540px;
    }
    .hero__container a {
        font-size: 17px;
        max-width: 260px;
        padding: 12px 6px;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 80px 16px;
    }
    .hero__container {
        gap: 10px;
    }
    .hero__container h2 {
        font-size: 32px;
        line-height: 42px;
        max-width: 100%;
    }
    .hero__container p {
        font-size: 16px;
        line-height: 25px;
        max-width: 100%;
    }
    .hero-notice {
        font-size: 12px;
        line-height: 19px;
        padding: 10px 16px;
        border-radius: 14px;
    }
    .hero__container a {
        font-size: 16px;
        max-width: 240px;
        padding: 11px 6px;
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 60px 12px;
    }
    .hero__container h2 {
        font-size: 26px;
        line-height: 36px;
    }
    .hero__container p {
        font-size: 15px;
        line-height: 22px;
    }
    .hero-notice {
        font-size: 11.5px;
        line-height: 18px;
        padding: 9px 14px;
    }
    .hero__container a {
        font-size: 15px;
        max-width: 200px;
        padding: 10px 5px;
    }
}

/*--------------------*/
.discover{
    padding: 70px 20px;
}
.discover__container{
    max-width: 1210px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.discover__header-text{
    text-align: center;
    max-width: 980px;
    padding: 23px 20px;
    background: #FFF;
    filter: drop-shadow(0 0 13px #470076);
    border-radius: 32px;
    margin-bottom: 30px;
}
.discover__header-text h2 {
    color: #5104B5;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px; /* 91.429% */
    margin-bottom: 32px;
    transition: color 0.3s ease;
}
.discover__header-text p {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 150% */
    transition: color 0.3s ease;
}
.discover__footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}
.discover__footer-block {
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.30) 0%, rgba(67, 0, 255, 0.30) 100%);
    border-radius: 60px;
    padding: 16px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 325px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 230px;
}
.discover__footer-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(92, 0, 118, 0.35);
}
.discover__footer-block img {
    margin-bottom: 13px;
    transition: transform 0.4s ease;
}
.discover__footer-block:hover img {
    transform: scale(1.05);
}
.discover__footer-block h3 {
    color: #5104B5;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 7px;
    transition: color 0.3s ease;
}
.discover__footer-block p {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: color 0.3s ease;
}


@media (max-width: 992px) {
    .discover {
        padding: 60px 20px;
    }
    .discover__header {
        flex-direction: column;
        text-align: center;
    }
    .discover__header-text {
        max-width: 100%;
    }
    .discover__header-text h2 {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 24px;
    }
    .discover__header-text p {
        font-size: 18px;
        line-height: 28px;
    }
    .discover__header-image img {
        max-width: 420px;
        width: 100%;
        height: auto;
    }
    .discover__footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    .discover__footer-block {
        max-width: 280px;
        padding: 16px 25px;
    }
    .discover__footer-block h3 {
        font-size: 18px;
    }
    .discover__footer-block p {
        font-size: 13.5px;
    }
}
@media (max-width: 768px) {
    .discover {
        padding: 50px 16px;
    }
    .discover__header-text h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .discover__header-text p {
        font-size: 16px;
        line-height: 24px;
    }
    .discover__header-image img {
        max-width: 340px;
    }
    .discover__footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .discover__footer-block {
        max-width: 100%;
        border-radius: 40px;
    }
}
@media (max-width: 480px) {
    .discover {
        padding: 40px 12px;
    }
    .discover__header-text h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 18px;
    }
    .discover__header-text p {
        font-size: 15px;
        line-height: 22px;
    }
    .discover__footer-block {
        padding: 14px 18px;
        border-radius: 35px;
    }
    .discover__footer-block img {
        width: 60px;
    }
    .discover__footer-block h3 {
        font-size: 17px;
    }
    .discover__footer-block p {
        font-size: 13px;
        line-height: 21px;
    }
}

/*--------------------*/
.choose{
    background: url('../images/choose-bg.webp') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding: 60px 20px;
    text-align: center;
}
.choose__container{
    max-width: 1210px;
    margin: 0 auto;
}
.choose__container h2{
    color: #FFF;
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px; /* 91.429% */
    margin-bottom: 50px;
}
.choose__content{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.choose__main-block {
    border-radius: 35px;
    border: 3px solid #7C4DFF;
    background: linear-gradient(90deg, #955CDF 0%, #5104B5 100%);
    max-width: 560px;
    width: 100%;
    padding: 10px;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.choose__main-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(153, 0, 255, 0.5);
}
.choose__main-block:hover {
    color: #E5F7FF;
}
@media (max-width: 992px) {
    .choose__container h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    .choose__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .choose__main {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    .choose__main-block {
        max-width: 100%;
        font-size: 19px;
        padding: 15px 20px;
    }
    .choose__image img {
        max-width: 80%;
        height: auto;
    }
}
@media (max-width: 768px) {
    .choose__container h2 {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    .choose__main {
        flex-direction: column;
        gap: 20px;
    }
    .choose__main-block {
        font-size: 18px;
        line-height: 1.4;
        padding: 14px 18px;
    }
    .choose__image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
}
@media (max-width: 480px) {
    .choose__container {
        padding: 0 15px;
    }
    .choose__container h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .choose__main-block {
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 25px;
    }
    .choose__image img {
        max-width: 100%;
    }
}

/*--------------------*/
.posts{
    padding: 60px 20px;
}
.posts__container{
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.posts__container h2{
    color: #5104B5;
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 43.2px; /* 102.857% */
    margin-bottom: 50px;
    max-width: 345px;
}
.posts__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}
.posts__main-block {
    max-width: 660px;
    padding: 25px 10px;
    border-radius: 66px;
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.30) 0%, rgba(67, 0, 255, 0.30) 100%);
    box-shadow: 0 0 13px 0 #3d0076;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 33px;
}
.posts__main-block_text{
    display: flex;
    flex-direction: column;
}
.posts__main-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(75, 0, 118, 0.3);
}
.posts__main-block img {
    margin-bottom: 30px;
    transition: transform 0.4s ease;
    max-width: 241px;
    height: 214px;
}
.posts__main-block:hover img {
    transform: scale(1.02);
}
.posts__main-block h3 {
    color: #5104B5;
    text-align: start;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.8px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.posts__main-block p {
    color: #FFF;
    text-align: start;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}
.posts__main-block a {
    border-radius: 15px;
    background: linear-gradient(98deg, #955CDF 0%, #063DA0 100%);
    padding: 8px;
    max-width: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.posts__main-block a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(71, 0, 118, 0.4);
}

@media (max-width: 992px) {
    .posts {
        padding: 50px 15px;
    }
    .posts__container h2 {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 40px;
        max-width: 100%;
    }
    .posts__main {
        gap: 25px;
    }
    .posts__main-block {
        max-width: 100%;
        padding: 20px 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .posts__main-block img {
        max-width: 80%;
        height: auto;
        margin-bottom: 20px;
    }
    .posts__main-block_text {
        align-items: center;
    }
    .posts__main-block h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .posts__main-block p {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .posts__main-block a {
        max-width: 160px;
        font-size: 17px;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .posts {
        padding: 40px 10px;
    }
    .posts__container h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }
    .posts__main {
        gap: 20px;
    }
    .posts__main-block {
        border-radius: 40px;
        gap: 20px;
        padding: 20px;
    }
    .posts__main-block img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .posts__main-block h3 {
        font-size: 19px;
        line-height: 1.3;
    }
    .posts__main-block p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    .posts__main-block a {
        font-size: 16px;
        max-width: 140px;
        padding: 9px;
    }
}
@media (max-width: 480px) {
    .posts {
        padding: 30px 8px;
    }

    .posts__container h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    .posts__main-block {
        flex-direction: column;
        border-radius: 30px;
        padding: 18px 12px;
        gap: 15px;
    }
    .posts__main-block img {
        max-width: 100%;
        height: auto;
    }
    .posts__main-block h3 {
        font-size: 17px;
    }
    .posts__main-block p {
        font-size: 15px;
        line-height: 1.4;
    }
    .posts__main-block a {
        font-size: 15px;
        max-width: 120px;
        padding: 8px;
    }
}

/*--------------------*/
.game{
    background: url('../images/game-bg.webp') no-repeat center center/cover;
    height: auto;
    position: relative;
    padding: 50px 20px;
    text-align: center;
}
.game__container{
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.game__title{
    margin-bottom: 50px;
}
.game__title h2{
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px; /* 91.429% */
    margin-bottom: 10px;
}
.game__title p{
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 150% */
}
.game__notice{
    border-radius: 18px;
    background: linear-gradient(180deg, #955CDF 0%, #5104B5 100%);
    width: 100%;
    padding: 14px 30px;
    color: #E3E3E3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}
.game__notice span{
    font-weight: 700;
}
.game__slot{
    width: 100%;
    max-width: 820px;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(123, 0, 255);
    margin-bottom: 40px;
}
.game__slot iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 3px solid #8e4dff;
    border-radius: 22px;
}

@media (max-width: 1350px) {
    .game__container {
        max-width: 760px;
    }
    .game__title h2 {
        font-size: 38px;
        line-height: 46px;
    }
    .game__title p {
        font-size: 18px;
        line-height: 28px;
    }
    .game__slot {
        max-width: 760px;
        margin-bottom: 35px;
    }
    .game__notice {
        font-size: 15px;
        padding: 12px 24px;
    }
}
@media (max-width: 992px) {
    .game {
        padding: 40px 16px;
    }
    .game__container {
        max-width: 700px;
    }
    .game__title h2 {
        font-size: 34px;
        line-height: 42px;
    }
    .game__title p {
        font-size: 17px;
        line-height: 26px;
    }
    .game__slot {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .game__notice {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 20px;
    }
}
@media (max-width: 768px) {
    .game {
        padding: 35px 14px;
    }
    .game__title {
        margin-bottom: 35px;
    }
    .game__title h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .game__title p {
        font-size: 16px;
        line-height: 24px;
    }
    .game__slot {
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(102, 0, 255, 0.4);
        margin-bottom: 28px;
    }
    .game__notice {
        font-size: 13px;
        padding: 9px 16px;
        border-radius: 14px;
    }
}
@media (max-width: 480px) {
    .game {
        padding: 30px 10px;
    }
    .game__title h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 8px;
    }
    .game__title p {
        font-size: 15px;
        line-height: 22px;
    }
    .game__slot {
        border-radius: 12px;
        margin-bottom: 24px;
    }
    .game__notice {
        font-size: 12.5px;
        line-height: 19px;
        padding: 8px 12px;
    }
}
/*---------------------*/
.footer {
    background: linear-gradient(86deg, #5104B5 0%, #955CDF 100%);
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
}
.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer__col {
    line-height: 1.6;
}
.footer__title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}
.footer__text {
    font-size: 14px;
    color: #edcdff;
}
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__item + .footer__item {
    margin-top: 8px;
}
.footer__link {
    color: #e1b3ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.footer__link:hover {
    color: #ffffff;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
}
.footer__copy {
    font-size: 13px;
    color: #ffffff;
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 20px;
    }
    .footer__title {
        margin-bottom: 10px;
    }
    .footer__container {
        gap: 25px;
    }
}
/*--------------------*/
.contact {
    background: url('../images/game-bg.webp') no-repeat center center/cover;
    padding: 90px 20px;
    text-align: center;
    position: relative;
}
.contact__container {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.50) 0%, rgba(59, 40, 111, 0.50) 100%);
    border: 3px solid #7C4DFF;
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 0 25px rgba(57, 0, 118, 0.25);
    backdrop-filter: blur(6px);

}
.contact__container h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact__subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 35px;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}
.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    border-radius: 14px;
    border: 2px solid #9900ff;
    padding: 14px 16px;
    font-size: 16px;
    color: #3d006e;
    outline: none;
    transition: all 0.3s ease;
}
.contact__form-group input:focus,
.contact__form-group textarea:focus {
    box-shadow: 0 0 15px rgba(238, 0, 255, 0.4);
    border-color: #b700ff;
}
.contact__btn {
    border-radius: 15px;
    background: linear-gradient(98deg, #955CDF 0%, #063DA0 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 5px solid #7C4DFF;
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
}
.contact__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(161, 0, 255, 0.5);
}
.contact__info {
    color: #d6d6d6;
    font-size: 16px;
    margin-top: 20px;
}

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup__content {
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.50) 0%, rgba(59, 40, 111, 0.50) 100%);
    border: 5px solid #7C4DFF;
    border-radius: 20px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 0 25px rgba(123, 0, 255, 0.5);
    animation: fadeIn 0.4s ease forwards;
}
.popup__content p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.popup__content button {
    border-radius: 13px;
    border: 5px solid #7C4DFF;
    background: linear-gradient(268deg, #955CDF 0%, #5104B5 100%);
    color: #fff;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.popup__content button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0, 174, 255, 0.5);
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1200px) {
    .contact__container {
        max-width: 680px;
        padding: 45px 35px;
    }
    .contact__container h2 {
        font-size: 36px;
    }
    .contact__subtitle {
        font-size: 17px;
    }
}
@media (max-width: 992px) {
    .contact {
        padding: 70px 20px;
    }
    .contact__container {
        padding: 40px 30px;
        max-width: 600px;
    }
    .contact__container h2 {
        font-size: 32px;
    }
    .contact__subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .contact__btn {
        max-width: 200px;
        font-size: 17px;
    }
    .contact__info {
        font-size: 15px;
    }
    .popup__content {
        padding: 35px 40px;
    }
    .popup__content p {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .contact {
        padding: 60px 16px;
    }
    .contact__container {
        padding: 35px 25px;
        border-radius: 20px;
    }
    .contact__container h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .contact__subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .contact__form-group input,
    .contact__form-group textarea {
        font-size: 15px;
        padding: 12px 14px;
    }
    .contact__btn {
        font-size: 16px;
        padding: 10px 0;
        max-width: 180px;
    }
    .contact__info {
        font-size: 14px;
        line-height: 22px;
    }
    .popup__content {
        width: 90%;
        padding: 30px 25px;
    }
    .popup__content p {
        font-size: 17px;
    }
    .popup__content button {
        font-size: 15px;
        padding: 8px 20px;
    }
}
@media (max-width: 480px) {
    .contact {
        padding: 50px 12px;
    }
    .contact__container {
        padding: 28px 20px;
    }
    .contact__container h2 {
        font-size: 24px;
    }
    .contact__subtitle {
        font-size: 14px;
    }
    .contact__form-group input,
    .contact__form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    .contact__btn {
        font-size: 15px;
        padding: 9px 0;
        max-width: 160px;
    }
    .contact__info {
        font-size: 13px;
    }
    .popup__content {
        width: 85%;
        padding: 25px 20px;
    }
    .popup__content p {
        font-size: 16px;
    }
    .popup__content button {
        font-size: 14px;
        padding: 8px 18px;
    }
}

/*--------------------*/
.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.4s ease forwards;
}
.age-popup__content {
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.50) 0%, rgba(59, 40, 111, 0.50) 100%);
    color: #fff;
    border: 5px solid #7C4DFF;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 0 30px rgba(161, 0, 255, 0.5);
    max-width: 420px;
    width: 90%;
    animation: scaleIn 0.4s ease forwards;
}
.age-popup__content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.age-popup__content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}
.age-popup__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.age-popup__btn {
    border: none;
    padding: 10px 28px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}
.age-popup__btn.yes {
    border-radius: 13px;
    border: 5px solid #7C4DFF;
    background: linear-gradient(268deg, #955CDF 0%, #5104B5 100%);
}
.age-popup__btn.no {
    background: linear-gradient(90deg, #A00000 0%, #6B0000 100%);
    border: 2px solid #E04545;
}
.age-popup__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(85, 0, 255, 0.5);
}
.age-popup__btn.no:hover {
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.5);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
    .age-popup__content {
        padding: 35px 25px;
    }
    .age-popup__content h3 {
        font-size: 22px;
    }
    .age-popup__content p {
        font-size: 14px;
        line-height: 22px;
    }
    .age-popup__buttons {
        flex-direction: column;
        gap: 12px;
    }
    .age-popup__btn {
        width: 100%;
        max-width: 200px;
    }
}
/*--------------------*/
.cookie-banner {
    position: fixed;
    bottom: 1%;
    left: 19%;
    width: 60%;
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.90) 0%, rgba(59, 40, 111, 0.90) 100%);
    border-radius: 30px;
    border: 5px solid #7C4DFF;
    color: #fff;
    z-index: 9999;
    display: none;
    justify-content: center;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.5s ease forwards;
}
.cookie-banner__container {
    max-width: 1000px;
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner__container p {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
    flex: 1;
}
.cookie-banner__link {
    color: #b700ff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.cookie-banner__link:hover {
    color: #8766ff;
}
.cookie-banner__btn {
    border-radius: 13px;
    background: linear-gradient(268deg, #955CDF 0%, #5104B5 100%);
    padding: 10px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 3px solid #7C4DFF;
}
.cookie-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 174, 255, 0.6);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .cookie-banner__container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        max-width: 100%;
        width: 90%;

    }

    .cookie-banner__btn {
        width: 100%;
        max-width: 200px;
    }
}
/*----------------------*/
.about {
    background: linear-gradient(100deg, rgba(80, 0, 160, 0.95), rgba(100, 0, 255, 0.85));
    color: #fff;
    padding: 100px 20px;
}
.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.about__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}
.about__intro-text {
    flex: 1 1 50%;
}
.about__intro-text h2 {
    font-size: 44px;
    color: #FF8CFD;
    margin-bottom: 15px;
    font-weight: 700;
}
.about__intro-text span {
    color: #DBC9F4;
}
.about__intro-text p {
    font-size: 18px;
    line-height: 30px;
    color: #F0E6FF;
    margin-bottom: 30px;
}
.about__intro-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(149, 92, 223, 0.45);
}
.about__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}
.about__block:nth-child(even) {
    flex-direction: row-reverse;
}
.about__text {
    flex: 1 1 50%;
}
.about__text h3 {
    color: #FF8CFD;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.about__text p {
    font-size: 17px;
    line-height: 28px;
    color: #F4E8FF;
}
.about__image img {
    max-width: 460px;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.4);
}
.about__highlights {
    background: linear-gradient(180deg, rgba(90, 0, 200, 0.5), rgba(50, 0, 150, 0.4));
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 0 45px rgba(149, 92, 223, 0.25);
}
.about__highlights h3 {
    font-size: 32px;
    color: #FF8CFD;
    margin-bottom: 40px;
    font-weight: 700;
}
.about__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
.about__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 25px;
    color: #F0E6FF;
    font-size: 17px;
    line-height: 26px;
    box-shadow: 0 0 18px rgba(124, 77, 255, 0.2);
    transition: all 0.35s ease;
}
.about__card:hover {
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(149, 92, 223, 0.25), rgba(81, 4, 181, 0.3));
    box-shadow: 0 0 25px rgba(149, 92, 223, 0.45);
}
.about__join {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about__join h3 {
    font-size: 34px;
    color: #FF8CFD;
    margin-bottom: 15px;
}
.about__join p {
    font-size: 18px;
    line-height: 30px;
    color: #F0E6FF;
    margin-bottom: 35px;
}
.about__btn {
    display: inline-block;
    background: linear-gradient(90deg, #955CDF 0%, #5104B5 100%);
    color: #fff;
    padding: 14px 42px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(149, 92, 223, 0.3);
}
.about__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 140, 253, 0.55);
}
@media (max-width: 992px) {
    .about {
        padding: 80px 15px;
    }
    .about__intro-text h2 {
        font-size: 38px;
    }
    .about__text h3,
    .about__highlights h3 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .about__intro,
    .about__block {
        flex-direction: column;
        text-align: center;
    }
    .about__intro-image img,
    .about__image img {
        max-width: 90%;
    }
    .about__cards {
        grid-template-columns: 1fr;
    }
    .about__btn {
        padding: 12px 32px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .about__intro-text h2 {
        font-size: 28px;
    }
    .about__text p,
    .about__join p {
        font-size: 16px;
        line-height: 26px;
    }
}


/*-------------------*/

.blog__main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/*-------------------*/
.news {
    background: linear-gradient(97deg, rgba(91, 64, 166, 0.79) 25%, rgb(81, 4, 181) 100%);
    padding: 80px 20px;
    color: #fff;
}
.news__container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.50) 0%, rgba(59, 40, 111, 0.50) 100%);
    border: 3px solid #7C4DFF;
    border-radius: 28px;
    box-shadow: 0 0 25px rgba(170, 0, 255, 0.2);
    padding: 50px 40px;
}
.news__header {
    text-align: center;
    margin-bottom: 40px;
}
.news__header h1 {
    color: #40008f;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}
.news__subtitle {
    font-size: 18px;
    color: #E3E3E3;
    line-height: 28px;
    max-width: 700px;
    margin: 0 auto 25px;
}
.news__image {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 150px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(161, 0, 255, 1);
    border: 10px solid #7C4DFF;
}
.news__image img{

}
.news__content p {
    font-size: 17px;
    line-height: 28px;
    color: #F3F3F3;
    margin-bottom: 22px;
}
.news__content strong {
    color: #b23fff;
    font-weight: 600;
}
.news__footer {
    text-align: center;
    margin-top: 40px;
}
.news__back {
    display: inline-block;
    color: #fff;
    border-radius: 13px;
    border: 5px solid #7C4DFF;
    background: linear-gradient(268deg, #955CDF 0%, #5104B5 100%);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.news__back:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(153, 0, 255, 0.5);
}

@media (max-width: 768px) {
    .news__container {
        padding: 30px 20px;
    }
    .news__header h1 {
        font-size: 28px;
    }
    .news__subtitle {
        font-size: 16px;
    }
    .news__content p {
        font-size: 15px;
        line-height: 26px;
    }
}
/*------------------*/
.policy {
    background: linear-gradient(97deg, rgba(91, 64, 166, 0.79) 25%, rgb(81, 4, 181) 100%);
    color: #fff;
    padding: 80px 20px;
}
.policy__container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(91, 64, 166, 0.50) 0%, rgba(59, 40, 111, 0.50) 100%);
    backdrop-filter: blur(8px);
    border: 5px solid #7C4DFF;
    border-radius: 24px;
    box-shadow: 0 0 25px rgba(123, 0, 255, 0.2);
    padding: 50px 40px;
}
.policy__title {
    color: #a463ff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.policy__date {
    text-align: center;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 40px;
}
.policy__section {
    margin-bottom: 35px;
}
.policy__subtitle {
    color: #a463ff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.policy__text {
    color: #E3E3E3;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}
.policy__text a{
    color: #a463ff;
}
.policy__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}
.policy__list li {
    margin-bottom: 8px;
    color: #f3f3f3;
    line-height: 26px;
}
.policy__contact {
    list-style: none;
    padding: 0;
    line-height: 26px;
}
.policy__contact a {
    color: #a463ff;
    text-decoration: none;
    transition: 0.3s;
}
.policy__contact a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .policy__container {
        padding: 30px 20px;
    }
    .policy__title {
        font-size: 30px;
    }
    .policy__subtitle {
        font-size: 20px;
    }
    .policy__text {
        font-size: 15px;
        line-height: 26px;
    }
}