* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #001a0d;
    color: #d4f1e8;
    min-height: 100vh;
    line-height: 1.75;
    background-image: linear-gradient(135deg, rgba(0, 77, 38, 0.2) 0%, transparent 100%);
}

.wrapper {
    width: 100%;
    margin: 0 auto;
}

.top-bar {
    background: linear-gradient(135deg, #004d26, #00b359);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 4px 18px rgba(0, 179, 89, 0.5);
    border-bottom: 3px solid #00ff7f;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    max-width: 100%;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}

.logo-shape {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #00ff7f, #00b359);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0, 255, 127, 0.4);
    transform: rotate(5deg);
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.primary-nav ul li a {
    color: #d4f1e8;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 22px;
    border-radius: 25px;
}

.primary-nav ul li a:hover {
    background: rgba(0, 255, 127, 0.25);
    color: #00ff7f;
    transform: translateY(-3px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    width: 33px;
    height: 4px;
    background: #00ff7f;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.intro-section {
    padding: 90px 35px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 77, 38, 0.3), transparent 70%);
}

.intro-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 68px;
    margin-bottom: 28px;
    color: #00ff7f;
    text-shadow: 0 0 40px rgba(0, 255, 127, 0.6);
    font-weight: 800;
}

.intro-section p {
    font-size: 21px;
    margin-bottom: 45px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.highlight-cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 90px 35px;
    flex-wrap: wrap;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card {
    background: rgba(0, 77, 38, 0.5);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid #00b359;
    flex: 1;
    min-width: 310px;
    max-width: 450px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #00ff7f;
    box-shadow: 0 18px 50px rgba(0, 255, 127, 0.4);
}

.highlight-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    margin-bottom: 22px;
    color: #00ff7f;
    font-weight: 700;
}

.highlight-card p {
    font-size: 18px;
    line-height: 1.85;
}

.play-area {
    margin: 90px 35px;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

.play-area h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    text-align: center;
    margin-bottom: 55px;
    color: #00ff7f;
    font-weight: 800;
}

.play-box {
    background: rgba(0, 26, 13, 0.8);
    padding: 50px;
    border-radius: 25px;
    border: 3px solid #00b359;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
}

.play-window {
    width: 100%;
    height: 780px;
    border: none;
    border-radius: 18px;
    background: #000;
}

.info-section {
    margin: 90px auto;
    padding: 55px 35px;
    max-width: 1450px;
}

.info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    margin-bottom: 42px;
    color: #00ff7f;
    text-align: center;
    font-weight: 800;
}

.info-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    margin: 38px 0 22px;
    color: #00b359;
    font-weight: 700;
}

.info-section p {
    font-size: 19px;
    line-height: 1.95;
    margin-bottom: 26px;
}

.info-section ul {
    margin: 30px 0;
    padding-left: 42px;
}

.info-section ul li {
    margin: 15px 0;
    font-size: 19px;
    line-height: 1.85;
}

.bottom-bar {
    background: linear-gradient(135deg, #004d26, #00b359);
    padding: 65px 35px 38px;
    margin-top: 110px;
    border-top: 3px solid #00ff7f;
}

.footer-wrap {
    max-width: 1450px;
    margin: 0 auto;
    text-align: center;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.help-links a {
    color: #00ff7f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.help-links a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.8);
}

.footer-note {
    color: #b8e6d5;
    font-size: 16px;
    line-height: 1.8;
}

.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.verify-modal.open {
    display: flex;
}

.verify-box {
    background: linear-gradient(135deg, #001a0d, #004d26);
    padding: 58px 48px;
    border-radius: 28px;
    text-align: center;
    max-width: 580px;
    border: 4px solid #00b359;
    box-shadow: 0 0 65px rgba(0, 179, 89, 0.7);
}

.verify-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    margin-bottom: 32px;
    color: #00ff7f;
    font-weight: 800;
}

.verify-box p {
    font-size: 20px;
    margin-bottom: 42px;
    line-height: 1.8;
}

.verify-choices {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.verify-choice {
    padding: 19px 52px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-choice.yes {
    background: linear-gradient(135deg, #00b359, #00ff7f);
    color: #001a0d;
}

.verify-choice.yes:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(0, 255, 127, 0.6);
}

.verify-choice.no {
    background: transparent;
    color: #00ff7f;
    border: 3px solid #00b359;
}

.verify-choice.no:hover {
    background: rgba(0, 179, 89, 0.25);
    border-color: #00ff7f;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        height: 100vh;
        background: linear-gradient(180deg, #004d26, #001a0d);
        transition: right 0.3s ease;
        padding: 105px 28px 28px;
        border-left: 3px solid #00b359;
    }

    .primary-nav.show {
        right: 0;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav ul li {
        border-bottom: 1px solid rgba(0, 179, 89, 0.3);
    }

    .primary-nav ul li a {
        display: block;
        padding: 21px 22px;
        font-size: 19px;
    }

    .intro-section h1 {
        font-size: 44px;
    }

    .intro-section p {
        font-size: 19px;
    }

    .highlight-cards {
        flex-direction: column;
        align-items: center;
    }

    .play-window {
        height: 580px;
    }

    .info-section h2 {
        font-size: 40px;
    }

    .verify-box {
        margin: 28px;
        padding: 42px 35px;
    }

    .verify-box h2 {
        font-size: 32px;
    }

    .verify-choices {
        flex-direction: column;
    }

    .verify-choice {
        width: 100%;
    }
}
