@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aladin&display=swap');


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

ul {
    list-style-type: none;
}

body {
    font-family: "Lato", sans-serif;
    background: #0F2718;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    overflow-x: hidden;
}

.v0z6p8qjy-btn {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    border-radius: 100px;
    background: #F7FF60;
    color: #0F2718;
    text-decoration: none;
    text-transform: uppercase;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    transition: .3s;
}

.v0z6p8qjy-btn:hover {
    box-shadow: 0 4px 20px rgba(90, 179, 31, 0.6);
}

.v0z6p8qjy-btn span {
    position: relative;
    width: 100%;
    text-align: center;
}

.v0z6p8qjy-btn span::before, .v0z6p8qjy-btn span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F7FF60;
    top: 50%;
    transform: translateY(-50%);
}

.v0z6p8qjy-btn span::before {
    left: -34px;
}

.v0z6p8qjy-btn span::after {
    right: -34px;
}

.v0z6p8qjy-header {
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0F2718;
}

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

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

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

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

.v0z6p8qjy-nav-link.active {
    color: #F7FF60;
}

.v0z6p8qjy-nav-link:hover {
    color: #F7FF60;
}

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

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

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

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

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

.v0z6p8qjy-mobile-menu {
    display: none;
    background-color: #0F2718;
    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);
}

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

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

.v0z6p8qjy-mobile-link.active {
    color: #F7FF60;
}

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

.v0z6p8qjy-hero {
    position: relative;
    background-image: url(../images/v0z6p8qjy-hero-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 20px;
    overflow: hidden;
}

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

.v0z6p8qjy-hero-title {
    font-family: "Aladin", system-ui;
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 55px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.v0z6p8qjy-hero-highlight {
    color: #F7FF60;
}

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

.v0z6p8qjy-features-section {
    padding: 200px 20px;
}

.v0z6p8qjy-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.v0z6p8qjy-feature-card {
    background: linear-gradient(180deg, #2A7100 0%, #0E4924 100%);
    border: 2px solid #2A7100;
    border-radius: 12px;
    padding: 0 28px 28px 28px;
    text-align: center;
    transition: 0.9s;
}

.v0z6p8qjy-feature-card:hover {
    border-color: #F7FF60;
}

.v0z6p8qjy-feature-card:nth-child(2) .v0z6p8qjy-feature-icon {
    margin-top: -64px;
}

.v0z6p8qjy-feature-icon {
    margin-top: -120px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 180px;
}

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

.v0z6p8qjy-why-section {
    position: relative;
    padding: 300px 20px 200px;
    background: linear-gradient(180deg, #2A7100 0%, #0E4924 100%);
}

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

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

.v0z6p8qjy-section-title {
    font-family: "Aladin", system-ui;
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
}

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

.v0z6p8qjy-why-card {
    width: 31%;
    background: #57AA0E6B;
    border-radius: 12px;
    padding: 22px 20px 32px;
    position: relative;
    transition: 0.9s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.v0z6p8qjy-why-card:hover {
    box-shadow: 0 8px 25px rgba(247, 255, 96, 0.4);
}

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

.v0z6p8qjy-why-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #F7FF60;
    line-height: 1.3;
}

.v0z6p8qjy-contacts-section {
    padding: 100px 20px 124px;
    background: linear-gradient(0deg, #0F2718 0%, #0C4420 100%);
}

.v0z6p8qjy-contacts-section .v0z6p8qjy-why-card {
    background: linear-gradient(180deg, #2A7100 0%, #0E4924 100%);
    border: 2px solid #2A7100;
    text-align: center;
}

.v0z6p8qjy-contacts-section .v0z6p8qjy-why-box {
    width: 100%;
}

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

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

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

.v0z6p8qjy-footer {
    background-color: #0F2718;
    border-top: 1px solid #2A7100;
}

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

.v0z6p8qjy-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;
}

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

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

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

.v0z6p8qjy-footer-link.active {
    color: #F7FF60;
}

.v0z6p8qjy-footer-link:hover {
    color: #F7FF60;
}

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

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

.v0z6p8qjy-disclaimer-box {
    border-radius: 12px;
    padding: 34px;
    background: linear-gradient(180deg, #2A7100 0%, #0E4924 100%);
    border: 2px solid #F7FF60;
}

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

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

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

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

/* Info */

.v0z6p8qjy-info-section {
    padding: 80px 20px 124px;
    background: linear-gradient(0deg, #0F2718 0%, #0C4420 100%);
}

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

.v0z6p8qjy-info-section h1 {
    font-family: "Aladin", system-ui;
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
}

.v0z6p8qjy-info-section h2 {
    font-family: "Aladin", system-ui;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 14px;
}

.v0z6p8qjy-info-section h3 {
    font-family: "Aladin", system-ui;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 14px;
}

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

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

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

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

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

.v0z6p8qjy-description-section {
    padding: 74px 20px 124px;
    background: linear-gradient(0deg, #0F2718 0%, #0C4420 100%);
}

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

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

.v0z6p8qjy-description-section .v0z6p8qjy-why-card {
    background: linear-gradient(180deg, #2A7100 0%, #0E4924 100%);
    border: 2px solid #2A7100;
    flex-direction: column;
    text-align: center;
}

.v0z6p8qjy-description-section .v0z6p8qjy-why-grid {
    margin-bottom: 70px;
}

.v0z6p8qjy-testimonials-section {
    position: relative;
    padding: 300px 20px 124px;
    background: linear-gradient(180deg, #2A7100 0%, #0E4924 100%);
}

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

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

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

.v0z6p8qjy-testimonials-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #F7FF60;
}

@media (max-width: 1024px) {
    .v0z6p8qjy-description-icon img {
        width: 300px;
    }

    .v0z6p8qjy-why-card {
        width: 42%;
    }
}

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

    .v0z6p8qjy-burger {
        display: flex;
    }

    .v0z6p8qjy-hero {
        padding: 80px 20px;
    }

    .v0z6p8qjy-hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .v0z6p8qjy-features-section {
        padding: 80px 20px 60px;
    }

    .v0z6p8qjy-feature-icon {
        margin-top: -64px;
    }

    .v0z6p8qjy-feature-icon img {
        height: 140px;
    }

    .v0z6p8qjy-features-container {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .v0z6p8qjy-why-section::before {
        height: 200px;
    }

    .v0z6p8qjy-why-card {
        width: 100%;
    }

    .v0z6p8qjy-why-title {
        font-size: 20px;
    }

    .v0z6p8qjy-why-icon {
        min-width: 80px;
        width: 80px;
    }

    .v0z6p8qjy-why-icon img {
        width: 100%;
    }

    .v0z6p8qjy-why-section {
        padding: 100px 20px 60px;
    }

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

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

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

    .v0z6p8qjy-description-section .v0z6p8qjy-why-grid {
        margin-bottom: 40px;
    }

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

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

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

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

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

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

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

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

    .v0z6p8qjy-contacts-section .v0z6p8qjy-why-title {
        font-size: 24px;
    }

    .v0z6p8qjy-contacts-section .v0z6p8qjy-why-desc {
        font-size: 16px;
    }

    .v0z6p8qjy-contacts-section .v0z6p8qjy-why-link {
        font-size: 16px;
    }

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

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

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

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


/* Game */
body.is-visible {
	overflow: hidden;
}

#a9j2e2ct5-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(15, 39, 24, 0.9);
}

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

.a9j2e2ct5-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;
}

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

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