<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.vic_header {
    background: linear-gradient(90deg, #012d07, #015521, #012d07);
    color: #fff;
}

.vic_header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vic_container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vic_logo img {
    display: block;
    transition: transform 0.3s ease;
}

.vic_logo img:hover {
    transform: scale(1.05);
}

.vic_auth-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vic_auth-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.vic_header-main {
    padding: 40px 0;
    text-align: center;
}

.vic_responsible-gaming {
    max-width: 800px;
    margin: 0 auto;
}

.vic_responsible-gaming h1 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.vic_responsible-gaming p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.vic_responsible-gaming i {
    font-size: 3rem;
    color: #3bb8ce;
    margin-bottom: 20px;
    display: inline-block;
}

.vic_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vic_modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 550px;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vic_modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.vic_modal-close:hover {
    color: #ff0000;
    transform: rotate(150deg);
}

.vic_modal-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.vic_tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.vic_tab-btn.active {
    color: #015521;
}

.vic_tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #015521;
}

.vic_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vic_form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vic_form-group label {
    font-weight: 500;
    color: #444;
}

.vic_form-group input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vic_form-group input:focus {
    outline: none;
    border-color: #00bff0;
    box-shadow: 0 0 0 2px rgba(0, 191, 240, 0.2);
}

.vic_form-group input.error {
    border-color: #ff0000;
}

.vic_error-message {
    color: #ff0000;
    font-size: 0.85rem;
    min-height: 18px;
}

.vic_password-wrapper {
    position: relative;
}

.vic_toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.vic_toggle-password:hover {
    color: #015521;
}

.vic_checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vic_checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vic_checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.vic_checkbox-wrapper input[type="checkbox"]:checked {
    background-color: #015521;
    border-color: #015521;
}

.vic_checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    color: #fff;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vic_checkbox-wrapper label {
    cursor: pointer;
    font-size: 0.95rem;
}

.vic_checkbox-wrapper a {
    color: #00d8eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vic_checkbox-wrapper a:hover {
    color: #3bb8ce;
    text-decoration: underline;
}

.vic_submit-btn {
    background-color: #015521;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.vic_submit-btn:hover {
    background-color: #014419;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 85, 33, 0.3);
}

.vic_submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vic_form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
}

.vic_form-footer a {
    color: #00d8eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vic_form-footer a:hover {
    color: #3bb8ce;
    text-decoration: underline;
}

.vic_form-logo {
    text-align: center;
    margin-top: 20px;
}

.vic_form-logo img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.vic_form-logo img:hover {
    opacity: 1;
}

.vic_success-icon {
    font-size: 4rem;
    color: #3bb8ce;
    margin-bottom: 20px;
}

.vic_success-icon i {
    display: inline-block;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

#vicSuccessTitle {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #015521;
}

#vicSuccessMessage {
    margin-bottom: 25px;
    color: #444;
}

.vic_success-close {
    background-color: #015521;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vic_success-close:hover {
    background-color: #014419;
    transform: translateY(-2px);
}

@media (max-width: 1280px) {
    .vic_responsible-gaming h1 {
        font-size: 2.2rem;
    }

    .vic_responsible-gaming p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .vic_header-main {
        padding: 30px 0;
    }

    .vic_responsible-gaming h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vic_container {
        padding: 0 15px;
    }

    .vic_header-main {
        padding: 25px 0;
    }

    .vic_responsible-gaming h1 {
        font-size: 1.8rem;
    }

    .vic_modal-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .vic_header-top {
        padding: 10px 0;
    }

    .vic_logo img {
        width: 60px;
        height: 60px;
    }

    .vic_auth-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .vic_header-main {
        padding: 20px 0;
    }

    .vic_responsible-gaming h1 {
        font-size: 1.5rem;
    }

    .vic_responsible-gaming i {
        font-size: 2.5rem;
    }

    .vic_modal-content {
        padding: 20px;
        margin: 0 15px;
    }

    .vic_tab-btn {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .vic_responsible-gaming h1 {
        font-size: 1.3rem;
    }

    .vic_responsible-gaming p {
        font-size: 0.9rem;
    }

    .vic_modal-content {
        padding: 15px;
    }
}

.vic_play-now-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../nhy-images/nhy-bg-img-1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

    &amp;::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
            rgba(1, 45, 7, 0.8),
            rgba(1, 85, 33, 0.85),
            rgba(1, 45, 7, 0.8));
        z-index: 0;
    }

    .vic_play-now-container {
        position: relative;
        z-index: 1;
        max-width: 1360px;
        width: 100%;
        padding: 40px 20px;
        border-radius: 12px;
        text-align: center;
        color: #fff;

        .vic_play-now-title {
            font-family: 'Tenor Sans', sans-serif;
            font-size: 48px;
            margin-bottom: 40px;
        }

        .vic_play-now-blocks {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;

            .vic_play-now-top-block {
                height: 100px;
                width: 100%;
                max-width: 600px;
                background-color: rgba(255, 255, 255, 0.07);
                border-radius: 10px;
            }

            .vic_play-now-bottom-block {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0 10px;
                font-family: 'IBM Plex Sans', sans-serif;
                font-weight: 400;
                font-size: 18px;

                p {
                    max-width: 700px;
                    margin-bottom: 20px;
                }

                .vic_auth-btn {
                    background: #00d8eb;
                    color: #fff;
                    border: none;
                    padding: 15px 30px;
                    font-size: 16px;
                    border-radius: 5px;
                    cursor: pointer;
                    transition: all 0.3s ease-in-out;

                    &amp;:hover {
                        transform: scale(1.05) rotate(1deg);
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .vic_play-now-section .vic_play-now-container .vic_play-now-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .vic_play-now-section {
        height: auto;
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .vic_play-now-section .vic_play-now-container .vic_play-now-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .vic_play-now-section .vic_play-now-container .vic_play-now-title {
        font-size: 28px;
    }

    .vic_play-now-section .vic_play-now-container .vic_play-now-bottom-block .vic_auth-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .vic_play-now-section .vic_play-now-container .vic_play-now-title {
        font-size: 24px;
    }
}

.vic_process-section {
    background: linear-gradient(90deg, #012d07, #015521, #012d07);
    color: #fff;
    padding: 80px 40px;
    text-align: center;

    .vic_process-container {
        max-width: 1360px;
        margin: auto;
    }

    h2 {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 36px;
        margin-bottom: 40px;
    }

    .vic_process-cards,
    .vic_howto-steps {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .vic_process-card,
    .vic_howto-step {
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 30px;
        width: calc(33% - 20px);
        transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
        position: relative;

        i {
            font-size: 40px;
            margin-bottom: 20px;
            color: #00d8eb;
        }

        h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        p {
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 400;
            font-size: 15px;
            line-height: 1.6;
        }
    }

    .vic_howto-step ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 15px;
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 500;
        font-size: 14px;

        li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
        }

        li::before {
            content: "âœ“";
            position: absolute;
            left: 0;
            color: #3bb8ce;
        }
    }

    .vic_start-btn {
        background: #00d8eb;
        color: #fff;
        border: none;
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;

        &amp;:hover {
            transform: scale(1.05) rotate(1deg);
        }
    }
}

@media (max-width: 1024px) {

    .vic_process-card,
    .vic_howto-step {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {

    .vic_process-card,
    .vic_howto-step {
        width: 100%;
    }

    h2 {
        font-size: 30px;
    }

    .vic_process-card,
    .vic_howto-step {
        width: calc(100% - 12px) !important;
    }

}

@media (max-width: 480px) {

    .vic_process-section {
        padding: 60px 20px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .vic_process-cards {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .vic_process-card,
    .vic_howto-step {
        width: calc(100% - 2px) !important;
    }

    .vic_start-btn {
        width: 100%;
    }
}

.vic_about-section {
    background: linear-gradient(90deg, rgba(1, 45, 7, 0.8), rgba(1, 85, 33, 0.85), rgba(1, 45, 7, 0.8));
    color: #fff;
    padding: 80px 40px;
    text-align: center;

    .vic_about-container {
        max-width: 1360px;
        margin: auto;
    }

    .vic_about-title {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 40px;
        margin-bottom: 40px;
    }

    .vic_about-content {
        display: flex;
        gap: 40px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .vic_about-image {
        flex: 1 1 400px;
        width: 300px;

        img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
    }

    .vic_about-description {
        flex: 1 1 500px;
        min-width: 300px;
        text-align: left;

        h3 {
            font-family: 'Tenor Sans', sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
        }

        p {
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
        }
    }

    .vic_action-btn {
        background: #00d8eb;
        color: #fff;
        border: none;
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;

        &amp;:hover {
            transform: scale(1.05) rotate(1deg);
        }
    }
}

@media (max-width: 1024px) {
    .vic_about-title {
        font-size: 34px;
    }

    .vic_about-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vic_about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .vic_about-content {
        flex-direction: column;
        text-align: center;
    }

    .vic_about-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vic_about-title {
        font-size: 24px;
    }

    .vic_action-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .vic_about-section {
        padding: 80px 5px;
    }

    .vic_about-title {
        font-size: 20px;
    }

    .vic_about-description h3,
    .vic_about-description p {
        text-align: center;
    }

    .vic_action-btn {
        font-size: 14px;
    }
}

.vic_winning-numbers-section {
    background: linear-gradient(90deg, rgba(1, 45, 7, 0.8), rgba(1, 85, 33, 0.85), rgba(1, 45, 7, 0.8));
    color: #fff;
    padding: 80px 40px;
    text-align: center;

    .vic_winning-container {
        max-width: 1360px;
        margin: auto;
    }

    .vic_winning-title {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 40px;
        margin-bottom: 40px;
    }

    .vic_numbers-wrapper {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .vic_number-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 16px 20px;
        width: 280px;
        transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;

        &amp;:hover {
            transform: skew(1deg, -1deg) scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
    }

    .vic_number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #015521;
        border-radius: 50%;
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 500;
        font-size: 14px;
        flex-shrink: 0;
        transition: transform 0.3s ease-in-out;

        &amp;:hover {
            transform: rotate(6deg) scale(1.1);
        }
    }

    .vic_winner {
        background-color: #3bb8ce;
        color: #000;
        font-weight: bold;
    }

    .vic_winning-subtitle {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 40px;
        max-width: 800px;
        margin-inline: auto;
    }

    .vic_ticket-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 500px;
        margin: auto;
    }

    .vic_form-input {
        width: 100%;
        padding: 14px 16px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-family: 'IBM Plex Sans', sans-serif;
        outline: none;
        transition: all 0.3s ease-in-out;
    }

    .vic_form-input:focus {
        box-shadow: 0 0 0 3px rgba(0, 191, 240, 0.4);
    }

    .vic_form-btn {
        background: #00d8eb;
        color: #fff;
        border: none;
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;

        &amp;:hover {
            transform: scale(1.05) rotate(1deg);
        }
    }
}

@media (max-width: 1024px) {
    .vic_winning-title {
        font-size: 34px;
    }

    .vic_number-group {
        width: 240px;
        padding: 14px 16px;
    }

    .vic_number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .vic_winning-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .vic_numbers-wrapper {
        gap: 20px;
    }

    .vic_number-group {
        width: 100%;
        max-width: 320px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .vic_winning-title {
        font-size: 24px;
    }

    .vic_number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .vic_form-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .vic_winning-title {
        font-size: 20px;
    }

    .vic_number {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

.vic_hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('../nhy-images/nhy-bg-img-2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;

    &amp;::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
            rgba(1, 45, 7, 0.8),
            rgba(1, 85, 33, 0.85),
            rgba(1, 45, 7, 0.8));
        z-index: 0;
    }

    .vic_hero-container {
        position: relative;
        z-index: 1;
        max-width: 1360px;
        padding: 40px 20px;
        color: #fff;
    }

    .vic_hero-title {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 48px;
        margin-bottom: 30px;
    }

    .vic_hero-content {
        max-width: 700px;
        margin: auto;
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 18px;
    }

    .vic_start-btn {
        display: inline-block;
        margin-top: 30px;
        background: #00d8eb;
        color: #fff;
        border: none;
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;

        &amp;:hover {
            transform: scale(1.05) rotate(1deg);
        }
    }
}

@media (max-width: 1024px) {
    .vic_hero-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .vic_hero-content {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .vic_hero-section {
        padding: 80px 20px 60px;
        min-height: auto;
    }

    .vic_hero-title {
        font-size: 32px;
    }

    .vic_hero-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .vic_hero-title {
        font-size: 28px;
    }

    .vic_hero-content {
        font-size: 15px;
    }

    .vic_start-btn {
        width: 100%;
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .vic_hero-title {
        font-size: 24px;
    }

    .vic_hero-content {
        font-size: 14px;
    }

    .vic_start-btn {
        padding: 14px 16px;
    }
}

.vic_faq-contact-section {
    background: linear-gradient(90deg,
        rgba(1, 45, 7, 0.8),
        rgba(1, 85, 33, 0.85),
        rgba(1, 45, 7, 0.8));
    color: #fff;
    padding: 80px 40px;

    .vic_faq-contact-container {
        max-width: 1360px;
        margin: auto;
        display: flex;
        gap: 60px;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .vic_faq-block {
        flex: 1 1 600px;
        min-width: 300px;
    }

    .vic_faq-title {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 32px;
        margin-bottom: 30px;
    }

    .vic_faq-item {
        margin-bottom: 20px;
    }

    .vic_faq-question {
        width: 100%;
        background: #015521;
        border: none;
        border-radius: 6px;
        padding: 14px 20px;
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 500;
        font-size: 16px;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        position: relative;
        text-align: left;

        &amp;:after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        &amp;:hover {
            background: #013515;
        }
    }

    .vic_faq-question[aria-expanded="true"] {
        background: #013515;

        &amp;:after {
            content: '-';
            transform: translateY(-50%) rotate(180deg);
        }
    }

    .vic_faq-answer {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 15px;
        margin-top: 10px;
        display: none;
        padding-left: 10px;
        border-left: 2px solid #00d8eb;
    }

    .vic_contact-block {
        flex: 1 1 500px;
        min-width: 300px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 30px;
    }

    .vic_contact-title {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .vic_form-label {
        display: block;
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .vic_form-input,
    .vic_form-textarea {
        width: 100%;
        padding: 12px 16px;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        font-family: 'IBM Plex Sans', sans-serif;
        outline: none;
        margin-bottom: 20px;
        transition: box-shadow 0.3s ease;
    }

    .vic_form-input:focus,
    .vic_form-textarea:focus {
        box-shadow: 0 0 0 3px rgba(0, 191, 240, 0.4);
    }

    .vic_form-textarea {
        resize: vertical;
        min-height: 120px;
    }

    .vic_checkbox-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .vic_form-checkbox {
        accent-color: #00d8eb;
        cursor: pointer;
    }

    .vic_checkbox-label {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 14px;
    }

    .vic_form-btn {
        background: #00d8eb;
        color: #fff;
        border: none;
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;

        &amp;:hover {
            transform: scale(1.05) rotate(1deg);
        }
    }

    .vic_form-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
}

@media (max-width: 1024px) {
    .vic_faq-contact-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .vic_faq-contact-container {
        flex-direction: column;
        align-items: center;
    }

    .vic_faq-contact-block {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vic_faq-contact-section {
        padding: 80px 5px;
    }

    .vic_faq-title {
        text-align: center;
        font-size: 28px;
    }

    .vic_contact-title {
        font-size: 24px;
    }
}

@media (max-width: 320px) {
    .vic_faq-question {
        font-size: 14px;
    }

    .vic_checkbox-label {
        font-size: 13px;
    }
}

.vic_main-footer {
    background: #012d07;
    color: #fff;
    padding: 60px 20px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.vic_responsibility-block {
    max-width: 1360px;
    margin: auto;
    text-align: center;
    padding-bottom: 40px;

    .vic_responsibility-title {
        font-family: 'Tenor Sans', sans-serif;
        font-size: 32px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        color: #3bb8ce;
        position: relative;

        i {
            font-size: 28px;
            color: #ff0000;
            animation: pulse 2s infinite;
        }
    }

    .vic_responsibility-text {
        font-weight: 400;
        font-size: 16px;
        max-width: 800px;
        margin: auto;
        line-height: 1.6;
        color: #ccc;
    }
}

.vic_footer-divider {
    height: 2px;
    background: #00d8eb;
    margin-bottom: 20px;
}

.vic_partner-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 10px;

    img {
        transition: transform 0.3s ease-in-out;
        border-radius: 4px;
    }

    img:hover {
        transform: scale(1.1);
    }
}

.vic_footer-middle {
    padding: 30px 0;
    text-align: center;
}

.vic_footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.vic_footer-links li a {
    font-weight: 500;
    font-size: 15px;
    color: #00d8eb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;

    &amp;:hover {
        color: #3bb8ce;
    }
}

.vic_footer-bottom {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

@media (max-width: 1024px) {
    .vic_responsibility-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }

    .vic_responsibility-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .vic_responsibility-title {
        font-size: 24px;
    }

    .vic_responsibility-text {
        font-size: 14px;
    }

    .vic_footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vic_responsibility-title {
        font-size: 20px;

        i {
            font-size: 22px;
        }
    }

    .vic_responsibility-text {
        font-size: 13px;
    }

    .vic_partner-links {
        flex-direction: column;
        align-items: center;
    }

    .vic_footer-links {
        gap: 12px;
    }
}

@media (max-width: 320px) {
    .vic_responsibility-title {
        font-size: 18px;
    }

    .vic_responsibility-text {
        font-size: 12px;
    }

    .vic_footer-links li a {
        font-size: 13px;
    }
}

.vic_age-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.99);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;

    &amp;.active {
        opacity: 1;
        visibility: visible;
    }
}

.vic_age-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.vic_age-modal {
    background: linear-gradient(90deg,
        rgba(1, 45, 7, 0.9),
        rgba(1, 85, 33, 0.9),
        rgba(1, 45, 7, 0.9));
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: fadeInScale 0.8s ease forwards;
}

.vic_age-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.vic_age-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vic_age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.vic_age-btn {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.vic_age-yes {
    background: #00d8eb;
    color: #fff;

    &amp;:hover {
        transform: scale(1.05) rotate(1deg);
    }
}

.vic_age-no {
    background: #ff0000;
    color: #fff;

    &amp;:hover {
        transform: scale(1.05) rotate(-1deg);
    }
}

@keyframes fadeInScale {
    from {
        transform: scale(0.9) skew(5deg, 5deg);
        opacity: 0;
    }

    to {
        transform: scale(1) skew(0, 0);
        opacity: 1;
    }
}

.vic_cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #012d07;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
    font-family: 'IBM Plex Sans', sans-serif;

    &amp;.active {
        opacity: 1;
        visibility: visible;
    }

    .vic_cookies-text {
        font-size: 15px;
        flex: 1 1 auto;
    }

    .vic_cookies-link {
        color: #00d8eb;
        font-weight: 500;
        text-decoration: underline;
        white-space: nowrap;

        &amp;:hover {
            color: #3bb8ce;
        }
    }

    .vic_cookies-btn {
        background: #00d8eb;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 15px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;

        &amp;:hover {
            transform: scale(1.05) rotate(1deg);
        }
    }
}

@media (max-width: 768px) {
    .vic_cookies-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .vic_cookies-text {
        text-align: left;
    }

    .vic_age-modal {
        padding: 30px 20px;
        font-size: 14px;
    }

    .vic_age-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .vic_age-modal {
        padding: 25px 15px;
    }

    .vic_age-title {
        font-size: 20px;
    }

    .vic_age-description {
        font-size: 14px;
    }

    .vic_age-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.vicpages_cookie-header {
    background: linear-gradient(90deg,
        rgba(1, 45, 7, 0.8),
        rgba(1, 85, 33, 0.85),
        rgba(1, 45, 7, 0.8));
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.vicpages_container {
    max-width: 1360px;
    margin: auto;
    padding: 0 20px;
}

.vicpages_cookie-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 40px;
    margin: 0;
}

.vicpages_cookie-content {
    background: #012d07;
    color: #fff;
    padding: 60px 20px;
}

.vicpages_cookie-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vicpages_cookie-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;

    &amp;:hover {
        transform: scale(1.02) skew(1deg, -1deg);
    }

    i {
        font-size: 32px;
        color: #00d8eb;
        flex-shrink: 0;
        margin-top: 4px;
    }

    h3 {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .vicpages_cookie-title {
        font-size: 34px;
    }

    .vicpages_cookie-item h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .vicpages_cookie-title {
        font-size: 28px;
    }

    .vicpages_cookie-item {
        flex-direction: row;
        align-items: center;
    }

    .vicpages_cookie-item i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .vicpages_cookie-header {
        padding: 60px 20px;
    }

    .vicpages_cookie-title {
        font-size: 24px;
    }

    .vicpages_cookie-item h3 {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .vicpages_cookie-title {
        font-size: 20px;
    }

    .vicpages_cookie-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .vicpages_cookie-item i {
        font-size: 24px;
    }
}

.vicpages_privacy-header {
    background: linear-gradient(90deg,
        rgba(1, 45, 7, 0.8),
        rgba(1, 85, 33, 0.85),
        rgba(1, 45, 7, 0.8));
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.vicpages_container {
    max-width: 1360px;
    margin: auto;
    padding: 0 20px;
}

.vicpages_privacy-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 40px;
    margin: 0;
}

.vicpages_privacy-content {
    background: #012d07;
    color: #fff;
    padding: 60px 20px;
}

.vicpages_policy-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vicpages_policy-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;

    &amp;:hover {
        transform: scale(1.02) skew(1deg, -1deg);
    }

    i {
        font-size: 32px;
        color: #00d8eb;
        flex-shrink: 0;
        margin-top: 4px;
    }

    h3 {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .vicpages_privacy-title {
        font-size: 34px;
    }

    .vicpages_policy-item h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .vicpages_privacy-title {
        font-size: 28px;
    }

    .vicpages_policy-item {
        flex-direction: row;
        align-items: center;
    }

    .vicpages_policy-item i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .vicpages_privacy-header {
        padding: 60px 20px;
    }

    .vicpages_privacy-title {
        font-size: 24px;
    }

    .vicpages_policy-item h3 {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .vicpages_privacy-title {
        font-size: 20px;
    }

    .vicpages_policy-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .vicpages_policy-item i {
        font-size: 24px;
    }
}

.vicpages_responsible-header {
    background: linear-gradient(90deg,
        rgba(1, 45, 7, 0.8),
        rgba(1, 85, 33, 0.85),
        rgba(1, 45, 7, 0.8));
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.vicpages_container {
    max-width: 1360px;
    margin: auto;
    padding: 0 20px;
}

.vicpages_responsible-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 40px;
    margin: 0;
}

.vicpages_responsible-content {
    background: #012d07;
    color: #fff;
    padding: 60px 20px;
}

.vicpages_responsible-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vicpages_responsible-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;

    &amp;:hover {
        transform: scale(1.02) skew(1deg, -1deg);
    }

    i {
        font-size: 32px;
        color: #00d8eb;
        flex-shrink: 0;
        margin-top: 4px;
    }

    h3 {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .vicpages_responsible-title {
        font-size: 34px;
    }

    .vicpages_responsible-item h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .vicpages_responsible-title {
        font-size: 28px;
    }

    .vicpages_responsible-item {
        flex-direction: row;
        align-items: center;
    }

    .vicpages_responsible-item i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .vicpages_responsible-header {
        padding: 60px 20px;
    }

    .vicpages_responsible-title {
        font-size: 24px;
    }

    .vicpages_responsible-item h3 {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .vicpages_responsible-title {
        font-size: 20px;
    }

    .vicpages_responsible-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .vicpages_responsible-item i {
        font-size: 24px;
    }
}</pre></body></html>