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

body {
    background: #000 url('../imgs/bg.jpg') center top repeat-y;
    background-size: 100% auto;
    font-family: 'Oxanium', 'Segoe UI', sans-serif;
    font-weight: 400;
    background-attachment: fixed;
    line-height: 1.5;
}


.ve_wrapper {
    max-width: 1200px;
    width: 96%;
    margin: 30px auto;
    background: #151515;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.iframe{
    max-width: 100%;
    width: 100%;
    height: 599px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

.ve_container {
    padding: 0 40px;
}


.ve_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ve_logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.ve_logo img {
    height: 44px;
    width: auto;
}

.ve_nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.ve_nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.2s;
    letter-spacing: 0.5px;
}

.ve_nav a:hover {
    color: #fff10f;
}

.ve_btn_outline {
    background: transparent;
    border: 2px solid #fff10f;
    padding: 8px 20px;
    border-radius: 40px;
    color: #fff10f !important;
    font-weight: 600;
}

.ve_btn_outline:hover {
    background: #fff10f;
    color: #000 !important;
}

.ve_menu_toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff10f;
    cursor: pointer;
}

@media (max-width: 900px) {
    .ve_header {
        flex-wrap: wrap;
    }

    .ve_menu_toggle {
        display: block;
    }

    .ve_nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding: 25px 0 15px;
        align-items: flex-start;
    }

    .ve_nav.ve_nav_open {
        display: flex;
    }

    .ve_container {
        padding: 0 24px;
    }
}


.ve_banner {
    background: #fff10f url('../imgs/bg2.png') right bottom/cover no-repeat;
    padding: 60px 40px;
    margin-bottom: 0;
    position: relative;
    background-size: 660px;
}

.ve_banner_content {
    max-width: 60%;
}

.ve_banner_title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ve_banner_text {
    font-size: 1.1rem;
    color: #1f1f1f;
    margin-bottom: 30px;
    font-weight: 500;
}

.ve_btn_dark {
    background: #000;
    color: #fff10f !important;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    transition: 0.2s;
    border: none;
}

.ve_btn_dark:hover {
    background: #2a2a2a;
    color: #fff10f;
}

@media (max-width: 700px) {
    .ve_banner_content {
        max-width: 100%;
    }

    .ve_banner_title {
        font-size: 2.2rem;
    }
}


.ve_section_title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 8px 0 16px 0;
}

.ve_subtitle {
    color: #fff10f;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-top: 50px;
    line-height: 1.2;
}

.ve_text_block {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.ve_text_block p{
    margin: 0 0 10px 0;
}

.ve_about_grid {
    display: flex;
    gap: 50px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

.ve_about_left {
    flex: 1.2;
}

.ve_about_text {
    background: #373737;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 25px;
    margin-top: 20px;
}

.ve_about_text p {
    margin-bottom: 18px;
}


.ve_games_row {
    display: flex;
    gap: 30px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.ve_game_card {
    flex: 1;
    background: #373737;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.25s ease;
    position: relative;
}

.ve_game_card:hover {
    transform: translateY(-6px);
}

.ve_game_img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.ve_game_info {
    background: linear-gradient(0deg, #101010, #2c2c2c);
    padding: 20px 18px;
    position: relative;
}

.ve_game_name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff10f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ve_game_desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 8px;
    max-height: 0;
    opacity: 0;
    transition: 0.3s ease;
    overflow: hidden;
}

.ve_game_card:hover .ve_game_desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 14px;
}

.ve_game_btn {
    display: inline-block;
    background: #fff10f;
    color: #000;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-top: 6px;
    transition: 0.2s;
}

.ve_game_btn:hover {
    background: #e0d00a;
    color: #000;
}

.ve_faq {
    margin: 40px 0 30px;
}

.ve_faq_item {
    background: #373737;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-bottom: 16px;
    overflow: hidden;
}

.ve_faq_question {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff10f;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.ve_faq_question span {
    font-size: 1.8rem;
    font-weight: 400;
}

.ve_faq_answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.2s;
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.85);
}

.ve_faq_answer p {
    padding: 20px 0;
    margin: 0;
}

.ve_faq_item.active .ve_faq_answer {
    max-height: 200px;
    padding: 0 24px;
}


.ve_cta {
    background: #fff10f url('../imgs/bg3.png') right bottom no-repeat;
    background-size: 145px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 45px 140px 45px 40px;
    border-radius: 5px;
    margin: 50px 0 40px;
}

.ve_cta_left {
    max-width: 600px;
}

.ve_cta_title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ve_cta_text {
    color: #1f1f1f;
    font-weight: 500;
}

.ve_cta_btn {
    background: transparent;
    border: 2px solid #000;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.ve_cta_btn:hover {
    background: #000;
    color: #fff10f;
}


.ve_footer {
    background: #0c0c0c;
    padding: 40px 40px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ve_footer_links {
    display: flex;
    justify-content: center;
    gap: 16px 28px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ve_footer_links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}

.ve_footer_links a:hover {
    color: #fff10f;
}

.ve_footer_legal {
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    margin: 15px auto;
    text-transform: uppercase;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.ve_copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 15px;
}

button,
a {
    cursor: pointer;
}

img {
    max-width: 100%;
}

hr {
    border-color: rgba(255, 255, 255, 0.05);
}


.ve_legal_section {
    padding: 40px;
    background: #373737;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 20px 0 50px;
}

.ve_legal_header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 20px;
}

.ve_legal_title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ve_breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
}

.ve_breadcrumb a {
    color: #fff10f;
    text-decoration: none;
    transition: 0.2s;
}

.ve_breadcrumb a:hover {
    text-decoration: underline;
}

.ve_breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.ve_legal_content {
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
}

.ve_legal_content h3 {
    color: #fff10f;
    font-size: 1.4rem;
    margin: 28px 0 12px 0;
    text-transform: uppercase;
    font-weight: 700;
}

.ve_legal_content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 20px 0 8px 0;
    font-weight: 600;
}

.ve_legal_content p {
    margin-bottom: 14px;
}

.ve_legal_content ul, .ve_legal_content ol {
    margin: 12px 0 20px 24px;
}

.ve_legal_content li {
    margin-bottom: 8px;
}

.ve_legal_footer_note {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.ve_contact_email {
    color: #fff10f;
    font-weight: 600;
    text-decoration: none;
}

.ve_contact_email:hover {
    text-decoration: underline;
}

.ve_update_date {
    display: inline-block;
    background: rgba(255,241,15,0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #fff10f;
    margin-bottom: 20px;
}


.ve_contact_section {
    padding: 40px;
    background: #373737;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 20px 0 50px;
}

.ve_contact_header {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 20px;
}

.ve_contact_title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

.ve_form_group {
    margin-bottom: 22px;
}

.ve_form_group label {
    display: block;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ve_form_group input,
.ve_form_group select,
.ve_form_group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Oxanium', monospace;
    font-size: 1rem;
    transition: 0.2s;
}

.ve_form_group input:focus,
.ve_form_group select:focus,
.ve_form_group textarea:focus {
    outline: none;
    border-color: #fff10f;
    box-shadow: 0 0 0 2px rgba(255,241,15,0.2);
}

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

.ve_checkbox_group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #fff;
}

.ve_checkbox_group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #fff10f;
}

.ve_checkbox_group label {
    margin: 0;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: none;
}

.ve_checkbox_group a {
    color: #fff10f;
    text-decoration: none;
}

.ve_checkbox_group a:hover {
    text-decoration: underline;
}

.ve_submit_btn {
    background: #fff10f;
    color: #000;
    border: none;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Oxanium', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    letter-spacing: 1px;
}

.ve_submit_btn:hover {
    background: #e0d00a;
    transform: translateY(-2px);
}


.ve_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.ve_popup_overlay.ve_active {
    opacity: 1;
    visibility: visible;
}

.ve_popup {
    background: #373737;
    border: 1px solid rgba(255,241,15,0.4);
    border-radius: 12px;
    padding: 32px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: 0.2s;
}

.ve_popup_overlay.ve_active .ve_popup {
    transform: scale(1);
}

.ve_popup h3 {
    color: #fff10f;
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ve_popup p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    line-height: 1.5;
}

.ve_popup_close {
    background: transparent;
    border: 2px solid #fff10f;
    color: #fff10f;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Oxanium', monospace;
    transition: 0.2s;
}

.ve_popup_close:hover {
    background: #fff10f;
    color: #000;
}

@media (max-width: 700px) {
    .ve_contact_section {
        padding: 25px;
    }
    .ve_contact_title {
        font-size: 1.8rem;
    }
}

@media(max-width: 600px){
    .ve_header{
        padding: 20px;
    }
    .ve_logo img{
        height: 38px;
    }
    .ve_logo a{
        font-size: 1.1rem;
    }
    .ve_banner{
        padding: 40px 20px 100px 20px;
        background-size: 200px;
    }
    .ve_section_title{
        font-size: 2.3rem;
    }
    .ve_games_row{
        flex-direction: column;
    }
    .ve_cta{
        padding: 40px 20px 100px 20px;
        background-size: 120px;
    }
    .ve_cta_left{
        margin-bottom: 20px;
    }
    .ve_footer_legal{
        font-size: 14px;
    }
    .iframe{
        height: 480px;
    }
}