@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    background: #1E0021;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    overflow-x: hidden;
}

.n491c166b-btn {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border-radius: 12px;
    background: #FF6200;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    transition: .3s;
}

.n491c166b-btn:hover {
    box-shadow: 0 4px 20px rgba(255, 98, 0, 0.6);
}

.n491c166b-topic {
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1E0021;
}

.n491c166b-topic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.n491c166b-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #FF6200;
}

.n491c166b-nav {
    display: flex;
    gap: 32px;
}

.n491c166b-nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.n491c166b-nav-link.active {
    color: #FF6200;
}

.n491c166b-nav-link:hover {
    color: #FF6200;
}

.n491c166b-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.n491c166b-burger-line {
    width: 25px;
    height: 3px;
    background-color: #FF6200;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.n491c166b-burger.active .n491c166b-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.n491c166b-burger.active .n491c166b-burger-line:nth-child(2) {
    opacity: 0;
}

.n491c166b-burger.active .n491c166b-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.n491c166b-mobile-menu {
    display: none;
    background-color: #1E0021;
    flex-direction: column;
    padding: 20px;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.n491c166b-mobile-menu.active {
    display: flex;
}

.n491c166b-mobile-link {
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.n491c166b-mobile-link.active {
    color: #FF6200;
}

.n491c166b-mobile-link:hover {
    background-color: rgba(244, 208, 63, 0.1);
}

.n491c166b-promo {
    position: relative;
    background-image: url(../images/n491c166b-promo-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.n491c166b-promo-container {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.n491c166b-promo-title {
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.n491c166b-promo-title span {
    color: #F8CCFF;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.n491c166b-details-section {
    padding: 120px 20px;
}

.n491c166b-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: flex-start;
    gap: 32px;
}

.n491c166b-detail-card {
    background: linear-gradient(180deg, #4A0854 0%, #AD00C7 100%);
    border: 2px solid #600D6F;
    border-radius: 12px;
    padding: 0 24px 32px;
    text-align: center;
    transition: 0.9s;
}

.n491c166b-detail-card:hover {
    border-color: #FF6200;
}

.n491c166b-detail-icon {
    margin-top: -40px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 180px;
}

.n491c166b-icon-coin {
    background: radial-gradient(circle at 30% 30%, #ffd700 0%, #f4a400 100%);
    position: relative;
}

.n491c166b-choose-section {
    position: relative;
    padding: 330px 20px 120px;
    background: linear-gradient(180deg, #4A0854 0%, #AD00C7 100%);
}

.n491c166b-choose-section::before {
    content: '';
    background-image: url(../images/n491c166b-bg-choose.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
}

.n491c166b-choose-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.n491c166b-section-title {
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.n491c166b-section-title span {
    color: #F8CCFF;
}

.n491c166b-choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.n491c166b-choose-card {
    width: 31%;
    background: #F8CCFF33;
    border-radius: 12px;
    padding: 32px 24px 32px;
    position: relative;
    transition: 0.9s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 16px;
}

.n491c166b-choose-card:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.n491c166b-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.n491c166b-choose-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #F8CCFF;
}

.n491c166b-contacts-section {
    padding: 100px 20px 124px;
    background: linear-gradient(0deg, #1E0021 0%, #4A0854 100%);
}

.n491c166b-contacts-section .n491c166b-choose-card {
    background: linear-gradient(180deg, #4A0854 0%, #AD00C7 100%);
    border: 2px solid #600D6F;
    text-align: center;
}

.n491c166b-contacts-section .n491c166b-choose-box {
    width: 100%;
}

.n491c166b-contacts-section .n491c166b-choose-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.n491c166b-contacts-section .n491c166b-choose-desc {
    font-size: 20px;
    line-height: 30px;
}

.n491c166b-contacts-section .n491c166b-choose-link {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    text-decoration: none;
}

.n491c166b-footer {
    background-color: #1E0021;
    border-top: 1px solid #600D6F;
}

.n491c166b-footer-bar {
    padding: 32px 0 0;
}

.n491c166b-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.n491c166b-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #FF6200;
}

.n491c166b-footer-links {
    display: flex;
    gap: 20px 32px;
    flex-wrap: wrap;
}

.n491c166b-footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.n491c166b-footer-link.active {
    color: #FF6200;
}

.n491c166b-footer-link:hover {
    color: #FF6200;
}

.n491c166b-footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.n491c166b-footer-disclaimer {
    padding: 32px 20px 48px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #DB62DD33;
}

.n491c166b-disclaimer-box {
    border-radius: 12px;
    padding: 34px;
    background: linear-gradient(180deg, #4A0854 0%, #AD00C7 100%);
    border: 2px solid #600D6F;
}

.n491c166b-disclaimer-text {
    color: #ffffff;
    text-align: center;
}

.n491c166b-footer-copyright {
    padding: 24px 20px 32px;
    text-align: center;
    color: #FFFFFF80;
}

.n491c166b-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s ease;
}

.n491c166b-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Info */

.n491c166b-info-section {
    padding: 80px 20px 124px;
    background: linear-gradient(0deg, #1E0021 0%, #4A0854 100%);
}

.n491c166b-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.n491c166b-info-section h1 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.n491c166b-info-section h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 14px;
}

.n491c166b-info-section h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 14px;
}

.n491c166b-info-section p {
    margin-bottom: 14px;
}

.n491c166b-info-section a {
    text-decoration: none;
    color: #FF6200;
    font-weight: 700;
}

.n491c166b-info-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.n491c166b-info-section ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
}

.n491c166b-info-section li+li {
    margin-top: 10px;
}

.n491c166b-description-section {
    padding: 32px 20px 120px;
    background: linear-gradient(0deg, #1E0021 0%, #4A0854 100%);
}

.n491c166b-description-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.n491c166b-description-icon img {
    max-width: 100%;
}

.n491c166b-description-section .n491c166b-choose-card {
    background: linear-gradient(180deg, #AD00C7 0%, #4A0854 100%);
    border: 2px solid #600D6F;
    flex-direction: column;
    text-align: center;
    gap: 32px;
}

.n491c166b-description-section .n491c166b-choose-grid {
    margin-bottom: 70px;
}

.n491c166b-testimonials-section {
    position: relative;
    padding: 330px 20px 120px;
    background: linear-gradient(180deg, #4A0854 0%, #AD00C7 100%);
}

.n491c166b-testimonials-section::before {
    content: '';
    background-image: url(../images/n491c166b-bg-choose.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
}

.n491c166b-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.n491c166b-testimonials-card {
    background: #F8CCFF33;
    padding: 22px 20px 32px;
    border-radius: 12px;
    text-align: center;
}

.n491c166b-testimonials-title {
    font-size: 24px;
    margin-top: 18px;
    color: #F8CCFF;
}


@media (max-width: 1024px) {
    .n491c166b-choose-card {
        width: 44%;
    }

    .n491c166b-description-icon img {
        width: 320px;
    }
}


@media (max-width: 768px) {
    .n491c166b-nav {
        display: none;
    }

    .n491c166b-burger {
        display: flex;
    }

    .n491c166b-promo {
        padding: 80px 20px;
        background-position: left;
    }

    .n491c166b-promo-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 40px;
    }

    .n491c166b-details-section {
        padding: 80px 20px 60px;
    }

    .n491c166b-detail-icon {
        margin-top: -64px;
    }

    .n491c166b-detail-icon img {
        height: 140px;
    }

    .n491c166b-details-container {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .n491c166b-choose-section::before {
        height: 160px;
    }

    .n491c166b-choose-card {
        width: 100%;
    }

    .n491c166b-choose-title {
        font-size: 20px;
    }

    .n491c166b-choose-icon {
        min-width: 94px;
        width: 94px;
    }

    .n491c166b-choose-icon img {
        width: 100%;
    }

    .n491c166b-choose-section {
        padding: 160px 20px 60px;
    }

    .n491c166b-btn {
        max-width: 280px;
        font-size: 26px;
        line-height: 32px;
    }

    .n491c166b-testimonials-section {
        padding: 100px 20px 60px;
    }

    .n491c166b-description-icon {
        margin-bottom: 40px;
    }

    .n491c166b-description-section .n491c166b-choose-grid {
        margin-bottom: 40px;
    }

    .n491c166b-testimonials-section::before {
        height: 200px;
    }

    .n491c166b-footer-bar {
        padding: 40px 0 0;
    }

    .n491c166b-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .n491c166b-footer-links {
        justify-content: center;
    }

    .n491c166b-disclaimer-box {
        padding: 34px 24px;
    }

    .n491c166b-disclaimer-text {
        font-size: 14px;
    }

    .n491c166b-footer-copyright {
        font-size: 14px;
    }

    .n491c166b-contacts-section {
        padding: 44px 20px 60px;
    }

    .n491c166b-contacts-section .n491c166b-choose-title {
        font-size: 24px;
    }

    .n491c166b-contacts-section .n491c166b-choose-desc {
        font-size: 16px;
    }

    .n491c166b-contacts-section .n491c166b-choose-link {
        font-size: 16px;
    }

    .n491c166b-description-section {
        padding: 44px 20px 60px;
    }

    .n491c166b-info-section {
        padding: 44px 20px 60px;
    }
}

@media (max-width: 480px) {
    .n491c166b-section-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 28px;
    }

    .n491c166b-info-section h1 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 28px;
    }
}


/* Game */
#okv58b057-game--container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;

    position: absolute !important;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    padding: 0 20px;
    width: 100%;
    background: rgba(30, 0, 33, 0.9);
}

body.is-visible #okv58b057-game--container {
    opacity: 1;
    visibility: visible;
}

.okv58b057-game--close {
    width: 26px;
    height: 26px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    margin-top: 20px;
    cursor: pointer;
}

.okv58b057-game--close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.okv58b057-game--canvas canvas {
    outline: none;
}