/*Обнуление*/
*{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:#F4FBFF;
    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: #00276E;
    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: blue;
    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: #00276E;
    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: #00276E;
    }
    .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: 940px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero__container h2{
    color: #FFF;
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 67.2px; /* 120% */
    max-width: 730px;
}
.hero__container p{
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
}
.hero-notice {
    max-width: 630px;
    border-radius: 18px;
    background: linear-gradient(90deg, #004EDC 0%, #002A76 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;
}
.hero-notice:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 174, 255, 0.4);
    background: linear-gradient(90deg, #005cff 0%, #003ca0 100%);
}
.hero-notice span {
    color: #E3E3E3;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 150% */
}
.hero__container a {
    border-radius: 13px;
    background: linear-gradient(0deg, #004EDC 0%, #004EDC 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;
    border: 2px solid #00AEFF;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.hero__container a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}
.hero__container a:hover::before {
    left: 100%;
}
.hero__container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.5);
    background: linear-gradient(0deg, #005eff 0%, #0068ff 100%);
    border-color: #33c9ff;
}


@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;
}
.discover__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}
.discover__header-text {
    max-width: 505px;
}
.discover__header-text h2 {
    color: #00276E;
    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: #FFF;
    filter: drop-shadow(0 0 13px #002A76);
    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;
}
.discover__footer-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 42, 118, 0.35);
}
.discover__footer-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 80%);
    transition: all 0.6s ease;
}
.discover__footer-block:hover::before {
    left: 100%;
}
.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: #212529;
    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: #212529;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    transition: color 0.3s ease;
}
.discover__footer-block:hover h3,
.discover__footer-block:hover p {
    color: #004EDC;
}


@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: 130px 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__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}
.choose__main-block {
    border-radius: 35px;
    border: 1px solid #00AEFF;
    background: linear-gradient(90deg, #004EDC 0%, #002A76 100%);
    max-width: 365px;
    padding: 21px 15px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    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;
}
.choose__main-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 174, 255, 0.5);
    background: linear-gradient(90deg, #005FFF 0%, #003C9D 100%);
    border-color: #33C9FF;
}
.choose__main-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 80%);
    transition: all 0.5s ease;
}
.choose__main-block:hover::before {
    left: 100%;
}
.choose__main-block:hover {
    color: #E5F7FF;
}

@media (max-width: 992px) {
    .choose {
        padding: 100px 20px;
    }
    .choose__container h2 {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    .choose__main {
        gap: 25px;
    }
    .choose__main-block {
        max-width: 300px;
        font-size: 22px;
        line-height: 26px;
        padding: 18px 14px;
    }
}
@media (max-width: 768px) {
    .choose {
        padding: 80px 16px;
    }
    .choose__container h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 35px;
    }
    .choose__main {
        gap: 20px;
    }
    .choose__main-block {
        max-width: 100%;
        font-size: 20px;
        padding: 16px 12px;
        border-radius: 25px;
    }
}
@media (max-width: 480px) {
    .choose {
        padding: 60px 12px;
    }
    .choose__container h2 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 28px;
    }
    .choose__main {
        flex-direction: column;
        gap: 16px;
    }
    .choose__main-block {
        font-size: 18px;
        line-height: 24px;
        padding: 14px 10px;
        border-radius: 20px;
    }
}

/*--------------------*/
.posts{
    padding: 60px 20px;
}
.posts__container{
    max-width: 1310px;
    margin: 0 auto;
}
.posts__container h2{
    color: #00276E;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 43.2px; /* 102.857% */
    margin-bottom: 30px;
}
.posts__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.posts__main-block {
    max-width: 418px;
    padding: 22px 25px;
    border-radius: 66px;
    background: #FFF;
    box-shadow: 0 0 13px 0 #002A76;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.posts__main-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 42, 118, 0.3);
}
.posts__main-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 80%);
    transition: all 0.6s ease;
}
.posts__main-block:hover::before {
    left: 100%;
}
.posts__main-block img {
    margin-bottom: 30px;
    transition: transform 0.4s ease;
}
.posts__main-block:hover img {
    transform: scale(1.05);
}
.posts__main-block h3 {
    color: #000;
    text-align: center;
    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: #545454;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}
.posts__main-block:hover h3 {
    color: #00276E;
}
.posts__main-block:hover p {
    color: #003C9D;
}
.posts__main-block a {
    border-radius: 15px;
    background: linear-gradient(180deg, #02163A 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::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 80%);
    transition: all 0.5s ease;
}
.posts__main-block a:hover::before {
    left: 100%;
}
.posts__main-block a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 42, 118, 0.4);
    background: linear-gradient(180deg, #03276A 0%, #0848C8 100%);
}

@media (max-width: 1350px) {
    .posts__container {
        max-width: 1100px;
    }
    .posts__main {
        gap: 25px;
    }
    .posts__main-block {
        max-width: 350px;
        padding: 20px;
        border-radius: 55px;
    }
    .posts__main-block img {
        width: 90%;
        margin-bottom: 25px;
    }
    .posts__main-block h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .posts__main-block p {
        font-size: 16px;
        line-height: 22px;
    }
    .posts__main-block a {
        font-size: 17px;
        max-width: 120px;
        padding: 7px;
    }
    .posts__container h2 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 25px;
    }
}
@media (max-width: 992px) {
    .posts {
        padding: 50px 20px;
    }
    .posts__container h2 {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 25px;
    }
    .posts__main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    .posts__main-block {
        max-width: 340px;
        padding: 20px 22px;
        border-radius: 50px;
    }
    .posts__main-block img {
        width: 85%;
        margin-bottom: 25px;
    }
    .posts__main-block h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .posts__main-block p {
        font-size: 16px;
        line-height: 22px;
    }
    .posts__main-block a {
        font-size: 17px;
        max-width: 120px;
    }
}
@media (max-width: 768px) {
    .posts {
        padding: 40px 16px;
    }
    .posts__container h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 20px;
    }
    .posts__main {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .posts__main-block {
        max-width: 100%;
        padding: 24px 25px;
        border-radius: 40px;
    }
    .posts__main-block h3 {
        font-size: 19px;
    }
    .posts__main-block p {
        font-size: 15px;
        line-height: 22px;
    }
    .posts__main-block a {
        font-size: 16px;
        padding: 7px;
        max-width: 110px;
    }
}
@media (max-width: 480px) {
    .posts {
        padding: 35px 12px;
    }
    .posts__container h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 18px;
    }
    .posts__main-block {
        padding: 20px 18px;
        border-radius: 30px;
    }
    .posts__main-block img {
        width: 80%;
        margin-bottom: 20px;
    }
    .posts__main-block h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .posts__main-block p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .posts__main-block a {
        font-size: 15px;
        max-width: 100px;
        padding: 6px;
    }
}

/*--------------------*/
.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(90deg, #004EDC 0%, #002A76 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(0, 247, 255);
    margin-bottom: 40px;
}
.game__slot iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@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(0, 255, 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(180deg, #00214d 0%, #001633 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: #cdd9ff;
}
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__item + .footer__item {
    margin-top: 8px;
}
.footer__link {
    color: #b3cbff;
    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: #a8b9d8;
}
@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: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 0 25px rgba(0, 42, 118, 0.25);
    backdrop-filter: blur(6px);
}
.contact__container h2 {
    color: #00276E;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact__subtitle {
    font-size: 18px;
    color: #333;
    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 #00AEFF;
    padding: 14px 16px;
    font-size: 16px;
    color: #00276E;
    outline: none;
    transition: all 0.3s ease;
}
.contact__form-group input:focus,
.contact__form-group textarea:focus {
    box-shadow: 0 0 15px rgba(0, 174, 255, 0.4);
    border-color: #006eff;
}
.contact__btn {
    border-radius: 14px;
    background: linear-gradient(90deg, #004EDC 0%, #002A76 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #00AEFF;
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
}
.contact__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.5);
    background: linear-gradient(90deg, #005FFF 0%, #003C9D 100%);
}
.contact__info {
    color: #333;
    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: #fff;
    border-radius: 20px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 174, 255, 0.5);
    animation: fadeIn 0.4s ease forwards;
}
.popup__content p {
    color: #00276E;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.popup__content button {
    border: none;
    background: linear-gradient(90deg, #004EDC 0%, #002A76 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    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, #004EDC 0%, #002A76 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 174, 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 {
    background: linear-gradient(90deg, #00AEFF 0%, #0068FF 100%);
    border: 2px solid #00AEFF;
}
.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(0, 174, 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: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #004EDC 0%, #002A76 100%);
    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: #00AEFF;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.cookie-banner__link:hover {
    color: #66C9FF;
}
.cookie-banner__btn {
    background: linear-gradient(90deg, #00AEFF 0%, #0068FF 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
.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;
    }

    .cookie-banner__btn {
        width: 100%;
        max-width: 200px;
    }
}
/*----------------------*/
.about {
    background: linear-gradient(180deg, #002A76 0%, #001A4D 100%);
    color: #fff;
    padding: 80px 20px;
}
.about__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.about__header h2 {
    color: #00AEFF;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.about__header h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.about__header p {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about__mission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.about__mission .about__text {
    flex: 1 1 50%;
}
.about__mission h3 {
    font-size: 28px;
    color: #00AEFF;
    margin-bottom: 15px;
}
.about__mission p {
    font-size: 17px;
    line-height: 26px;
}
.about__mission .about__image img {
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.3);
}
.about__features {
    background: rgba(0, 30, 100, 0.5);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 174, 255, 0.15);
}
.about__features h3 {
    font-size: 28px;
    color: #00AEFF;
    margin-bottom: 20px;
    text-align: center;
}
.about__list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
    font-size: 17px;
    line-height: 26px;
}
.about__team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap-reverse;
}
.about__team-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 174, 255, 0.3);
}
.about__team-text h3 {
    font-size: 28px;
    color: #00AEFF;
    margin-bottom: 10px;
}
.about__team-text p {
    font-size: 17px;
    line-height: 26px;
    max-width: 600px;
}
.about__join {
    text-align: center;
    margin-top: 40px;
}
.about__join h3 {
    color: #00AEFF;
    font-size: 30px;
    margin-bottom: 15px;
}
.about__join p {
    max-width: 750px;
    margin: 0 auto 25px;
    font-size: 17px;
    line-height: 26px;
}
.about__btn {
    display: inline-block;
    background: linear-gradient(90deg, #00AEFF 0%, #0068FF 100%);
    color: #fff;
    padding: 12px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00AEFF;
}
.about__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 174, 255, 0.5);
}
@media (max-width: 768px) {
    .about__mission, .about__team {
        flex-direction: column;
        text-align: center;
    }
    .about__mission .about__image img,
    .about__team-image img {
        max-width: 100%;
    }
    .about__features {
        padding: 25px;
    }
    .about__btn {
        width: 100%;
        max-width: 250px;
    }
}

/*-------------------*/

.blog__main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/*-------------------*/
.news {
    background: linear-gradient(180deg, #002A76 0%, #001A4D 100%);
    padding: 80px 20px;
    color: #fff;
}
.news__container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    box-shadow: 0 0 25px rgba(0, 174, 255, 0.2);
    padding: 50px 40px;
}
.news__header {
    text-align: center;
    margin-bottom: 40px;
}
.news__header h1 {
    color: #00AEFF;
    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;
    box-shadow: 0 0 20px rgba(0, 174, 255, 0.3);
}
.news__content p {
    font-size: 17px;
    line-height: 28px;
    color: #F3F3F3;
    margin-bottom: 22px;
}
.news__content strong {
    color: #00AEFF;
    font-weight: 600;
}
.news__footer {
    text-align: center;
    margin-top: 40px;
}
.news__back {
    display: inline-block;
    background: linear-gradient(90deg, #00AEFF 0%, #0068FF 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid #00AEFF;
}
.news__back:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 174, 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(180deg, #002A76 0%, #001A4D 100%);
    color: #fff;
    padding: 80px 20px;
}
.policy__container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 0 25px rgba(0, 174, 255, 0.2);
    padding: 50px 40px;
}
.policy__title {
    color: #00AEFF;
    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: #00AEFF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.policy__text {
    color: #E3E3E3;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}
.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: #00AEFF;
    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;
    }
}