body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.wen__header_root {
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Overpass Mono', monospace;
}

.wen__header_home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.wen__header_logo {
    height: 3.5rem;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.wen__header_title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.wen__header_actions {
    display: flex;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.wen__header_btn {
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.5px;
}

.wen__header_btn-login {
    background-color: #00ff99;
    color: #000;
    border: 2px solid #00cc77;
}

.wen__header_btn-login:hover {
    background-color: #00cc77;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 204, 119, 0.4);
}

.wen__header_btn-register {
    background-color: #ff6600;
    color: #fff;
    border: 2px solid #cc5200;
}

.wen__header_btn-register:hover {
    background-color: #cc5200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

@media (max-width: 1024px) {
    .wen__header_root {
        padding: 1.2rem 1.8rem;
    }
    .wen__header_title {
        font-size: 1.6rem;
    }
    .wen__header_btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .wen__header_root {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    .wen__header_home-link {
        flex-direction: column;
        text-align: center;
    }
    .wen__header_logo {
        height: 3rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .wen__header_title {
        font-size: 1.5rem;
    }
    .wen__header_actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wen__header_root {
        padding: 0.8rem 1rem;
    }
    .wen__header_title {
        font-size: 1.3rem;
    }
    .wen__header_btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .wen__header_actions {
        gap: 0.8rem;
    }
}

@media (max-width: 320px) {
    .wen__header_root {
        padding: 0.6rem 0.8rem;
    }
    .wen__header_title {
        font-size: 1.1rem;
    }
    .wen__header_logo {
        height: 2.5rem;
    }
    .wen__header_btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    .wen__header_actions {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .wen__header_btn {
        flex: 1 1 40%;
        justify-content: center;
        text-align: center;
    }
}

.wen__about_root {
    font-family: 'Overpass Mono', monospace;
    color: #333;
}

.wen__about_warning-block {
    background: linear-gradient(90deg, #ff0000 0%, #ff6600 100%);
    padding: 1rem 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wen__about_warning-text {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    min-height: 1.5rem;
}

.wen__about_warning-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 0.5rem;
}

.wen__about_hero-block {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #00ccff 0%, #9933ff 100%);
    text-align: center;
    color: #fff;
}

.wen__about_main-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    min-height: 3rem;
}

.wen__about_subtitle {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    min-height: 2rem;
}

.wen__about_description {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    min-height: 4rem;
}

.wen__about_content-block {
    max-width: 1120px;
    height: auto;
    margin: 0 auto;
    display: flex;
    padding: 2rem;
    gap: 2rem;
    background: #f8f8f8;
}

.wen__about_text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wen__about_text-container img {
    height: 70%;
}

.wen__about_image-container {
    flex: 1;
}

.wen__about_content-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.wen__about_content-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 10rem;
}

.wen__about_action-btn {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: #fff;
    border: none;
    border-radius: 2rem;    
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    min-height: 3rem;
}

.wen__about_action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .wen__about_main-title {
        font-size: 2.2rem;
    }
    .wen__about_subtitle {
        font-size: 1.3rem;
    }
    .wen__about_content-block {
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wen__about_hero-block {
        padding: 2rem 1.5rem;
    }
    .wen__about_main-title {
        font-size: 1.8rem;
    }
    .wen__about_content-block {
        flex-direction: column;
    }
    .wen__about_text-container {
        order: 2;
        flex-direction: column-reverse;
    }
    .wen__about_image-container {
        order: 1;
    }
    .wen__about_content-text {
        min-height: 6rem;
    }
}

@media (max-width: 480px) {
    .wen__about_warning-block {
        padding: 0.8rem 1rem;
        flex-direction: column;
    }
    .wen__about_warning-text {
        font-size: 0.9rem;
    }
    .wen__about_hero-block {
        padding: 1.5rem 1rem;
    }
    .wen__about_main-title {
        font-size: 1.5rem;
    }
    .wen__about_subtitle {
        font-size: 1.1rem;
    }
    .wen__about_content-block {
        padding: 1rem;
    }
    .wen__about_action-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .wen__about_warning-text {
        font-size: 0.8rem;
    }
    .wen__about_main-title {
        font-size: 1.3rem;
    }
    .wen__about_subtitle {
        font-size: 1rem;
    }
    .wen__about_description {
        font-size: 0.9rem;
    }
    .wen__about_content-text {
        font-size: 0.9rem;
        min-height: 9rem;
    }
    .wen__about_action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

.wen__countdown_root {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../wen-imges/wen-background-images-1.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 2rem;
    box-sizing: border-box;
}

.wen__countdown_container {
    max-width: 800px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.wen__countdown_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #ffcc00;
    min-height: 3rem;
}

.wen__countdown_text {
    font-family: 'Overpass Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 5rem;
}

.wen__countdown_timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wen__countdown_timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wen__countdown_timer-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: #ff6600;
    min-width: 80px;
    min-height: 3.5rem;
}

.wen__countdown_timer-label {
    font-family: 'Overpass Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.wen__countdown_draw-info {
    font-family: 'Overpass Mono', monospace;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #00ccff;
    min-height: 1.5rem;
}

.wen__countdown_btn {
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-height: 3.2rem;
}

.wen__countdown_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .wen__countdown_title {
        font-size: 2.2rem;
    }
    .wen__countdown_timer-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .wen__countdown_root {
        min-height: 400px;
    }
    .wen__countdown_title {
        font-size: 1.8rem;
    }
    .wen__countdown_text {
        font-size: 1rem;
    }
    .wen__countdown_timer {
        gap: 1rem;
    }
    .wen__countdown_timer-value {
        font-size: 2rem;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .wen__countdown_root {
        min-height: 350px;
        padding: 1.5rem;
    }
    .wen__countdown_container {
        padding: 1.5rem;
    }
    .wen__countdown_title {
        font-size: 1.5rem;
    }
    .wen__countdown_timer {
        gap: 0.5rem;
    }
    .wen__countdown_timer-value {
        font-size: 1.5rem;
        min-width: 50px;
    }
    .wen__countdown_btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .wen__countdown_root {
        min-height: 300px;
        padding: 1rem;
    }
    .wen__countdown_container {
        padding: 1rem;
    }
    .wen__countdown_title {
        font-size: 1.3rem;
    }
    .wen__countdown_text {
        font-size: 0.9rem;
    }
    .wen__countdown_timer {
        flex-wrap: wrap;
    }
    .wen__countdown_timer-block {
        width: 45%;
        margin-bottom: 1rem;
    }
}

.wen__faq_root {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Overpass Mono', monospace;
}

.wen__faq_container {
    max-width: 900px;
    margin: 50px auto;
}

.wen__faq_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #3333ff;
    text-transform: uppercase;
    letter-spacing: -1px;
    min-height: 3rem;
}

.wen__faq_item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.3s ease;
}

.wen__faq_question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    color: #333;
    background: linear-gradient(90deg, #ffffff 0%, #f1f1f1 100%);
    min-height: 3.5rem;
    transition: all 0.3s ease;
}

.wen__faq_question:hover {
    background: linear-gradient(90deg, #f1f1f1 0%, #e1e1e1 100%);
}

.wen__faq_icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #ff6600;
}

.wen__faq_answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    min-height: 0;
}

.wen__faq_item.active .wen__faq_answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
    min-height: 5rem;
}

.wen__faq_item.active .wen__faq_icon {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .wen__faq_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .wen__faq_root {
        padding: 3rem 1.5rem;
    }
    .wen__faq_title {
        font-size: 1.8rem;
    }
    .wen__faq_question {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .wen__faq_root {
        padding: 2rem 1rem;
    }
    .wen__faq_title {
        font-size: 1.5rem;
    }
    .wen__faq_question {
        font-size: 0.9rem;
        padding: 1rem;
        min-height: 3rem;
    }
    .wen__faq_answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .wen__faq_title {
        font-size: 1.3rem;
    }
    .wen__faq_question {
        font-size: 0.85rem;
    }
}

.wen__feature_root {
    position: relative;
    width: 100%;
    min-height: 80vh;
    margin-top: -80px;
    padding-top: 150px;
    z-index: 10;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
}

.wen__feature_bg-image {
    position: absolute;
    width: 100%;
    height: calc(100% - 120px);
    bottom: 0;
    left: 0;
    background: url('../wen-imges/wen-background-images-2.jpg') no-repeat center center/cover;
    z-index: 1;
    border-top: 4px solid #3333ff;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.wen__feature_content {
    position: relative;
    width: 30%;
    margin-left: 10%;
    background: rgba(255, 255, 255, 0.97);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 2;
    margin-top: -90px;
    margin-bottom: 30px;
}

.wen__feature_btn {
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 3.2rem;
}

.wen__feature_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .wen__feature_root {
        min-height: 70vh;
        margin-top: -60px;
        padding-top: 120px;
    }
    
    .wen__feature_content {
        width: 60%;
        margin-left: 5%;
        padding: 2.5rem;
        margin-top: -40px;
    }
}

@media (max-width: 768px) {
    .wen__feature_root {
        min-height: 60vh;
        margin-top: -40px;
        padding-top: 100px;
    }
    
    .wen__feature_content {
        width: 80%;
        margin: -30px auto 20px;
        border-radius: 12px;
    }
    
    .wen__feature_bg-image {
        height: calc(100% - 100px);
    }
}

@media (max-width: 480px) {
    .wen__feature_root {
        min-height: 50vh;
        margin-top: -30px;
        padding-top: 80px;
    }
    
    .wen__feature_content {
        width: 90%;
        padding: 2rem;
        margin-top: -20px;
        margin-bottom: 20px;
    }
    
    .wen__feature_bg-image {
        height: calc(100% - 80px);
    }
}

@media (max-width: 320px) {
    .wen__feature_content {
        width: 80%;
        padding: 1.5rem;
        margin-top: -15px;
    }
}

.wen__disclaimer_root {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff8f8 0%, #ffebeb 100%);
    border-top: 4px solid #ff3333;
    border-bottom: 4px solid #ff3333;
    font-family: 'Overpass Mono', monospace;
}

.wen__disclaimer_container {
    max-width: 1200px;
    margin: 0 auto;
}

.wen__disclaimer_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #ff3333;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    min-height: 3rem;
}

.wen__disclaimer_items {
    display: flex;
    gap: 2rem;
}

.wen__disclaimer_item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wen__disclaimer_item:hover {
    transform: translateY(-5px);
}

.wen__disclaimer_item-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #ff6600;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.wen__disclaimer_item-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    min-height: 6rem;
}

.wen__disclaimer_link {
    color: #ff3333;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.wen__disclaimer_link:hover {
    color: #cc0000;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .wen__disclaimer_title {
        font-size: 2.2rem;
    }
    .wen__disclaimer_item-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .wen__disclaimer_root {
        padding: 3rem 1.5rem;
    }
    .wen__disclaimer_items {
        flex-direction: column;
        gap: 1.5rem;
    }
    .wen__disclaimer_item {
        padding: 1.5rem;
    }
    .wen__disclaimer_title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .wen__disclaimer_root {
        padding: 2rem 1rem;
    }
    .wen__disclaimer_title {
        font-size: 1.5rem;
    }
    .wen__disclaimer_item-title {
        font-size: 1.1rem;
    }
    .wen__disclaimer_item-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .wen__disclaimer_title {
        font-size: 1.3rem;
    }
}

.wen__footer_root {
    font-family: 'Overpass Mono', monospace;
}

.wen__footer_top {
    background: linear-gradient(90deg, #ffffff 0%, #f1f1f1 100%);
    padding: 2.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.wen__footer_top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.wen__footer_links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.wen__footer_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.wen__footer_link:hover {
    transform: translateY(-5px);
}

.wen__footer_link-img {
    width: 100px;
    height: 100px;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.wen__footer_link-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.wen__footer_age-limit {
    height: 60px;
    width: auto;
}

.wen__footer_bottom {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1.5rem 1rem;
    text-align: center;
}

.wen__footer_bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.wen__footer_bottom-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.wen__footer_bottom-link:hover {
    color: #3333ff;
    text-decoration: underline;
}

.wen__footer_copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .wen__footer_top-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .wen__footer_links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wen__footer_bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .wen__footer_link {
        font-size: 0.9rem;
    }
    
    .wen__footer_age-limit {
        height: 50px;
    }
}

.wen__age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.wen__age-content {
    background: white;
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.wen__age-title {
    font-size: 2rem;
    color: #ff3333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.wen__age-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.wen__age-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wen__age-confirm {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #00cc00 0%, #009900 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wen__age-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 204, 0, 0.4);
}

.wen__age-exit {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wen__age-exit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.wen__cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem;
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.wen__cookie-text {
    margin: 0 1rem 1rem 0;
    max-width: 800px;
    line-height: 1.5;
}

.wen__cookie-link {
    color: #00ccff;
    text-decoration: none;
    margin: 0 1rem 1rem 0;
}

.wen__cookie-link:hover {
    text-decoration: underline;
}

.wen__cookie-btn {
    padding: 0.5rem 1.5rem;
    background: #00cc00;
    color: white;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.wen__cookie-btn:hover {
    background: #00aa00;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .wen__age-content {
        padding: 1.5rem;
    }
    
    .wen__age-title {
        font-size: 1.5rem;
    }
    
    .wen__age-text {
        font-size: 1rem;
    }
    
    .wen__cookie-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .wen__cookie-text,
    .wen__cookie-link {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.wen__form_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.wen__form_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #3333ff;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wen__form_subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.wen__form_form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wen__form_section {
    margin-bottom: 2.5rem;
}

.wen__form_section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #ff6600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.wen__form_group {
    margin-bottom: 1.5rem;
}

.wen__form_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.wen__form_input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Overpass Mono', monospace;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wen__form_input:focus {
    border-color: #3333ff;
    outline: none;
}

.wen__form_input.invalid {
    border-color: #ff3333;
}

.wen__form_error {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.wen__form_password-wrapper {
    position: relative;
}

.wen__form_toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.wen__form_checkbox-group {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.wen__form_checkbox {
    margin-right: 1rem;
}

.wen__form_checkbox-label {
    font-size: 0.9rem;
}

.wen__form_checkbox-link {
    color: #3333ff;
    text-decoration: none;
}

.wen__form_checkbox-link:hover {
    text-decoration: underline;
}

.wen__form_submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.wen__form_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.wen__form_submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .wen__form_container {
        padding: 1rem;
    }
    
    .wen__form_title {
        font-size: 2rem;
    }
    
    .wen__form_section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .wen__form_title {
        font-size: 1.5rem;
    }
    
    .wen__form_subtitle {
        font-size: 1rem;
    }
}

.wen__login_container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
}

.wen__login_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #3333ff;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wen__login_subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.wen__login_form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wen__login_group {
    margin-bottom: 1.5rem;
}

.wen__login_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.wen__login_input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Overpass Mono', monospace;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wen__login_input:focus {
    border-color: #3333ff;
    outline: none;
}

.wen__login_error {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.wen__login_password-wrapper {
    position: relative;
}

.wen__login_toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.wen__login_forgot-password {
    display: block;
    text-align: right;
    margin: -0.5rem 0 1rem;
    font-size: 0.9rem;
}

.wen__login_forgot-link {
    color: #3333ff;
    margin-top: 11px;
    text-decoration: none;
}

.wen__login_forgot-link:hover {
    text-decoration: underline;
}

.wen__login_checkbox-group {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.wen__login_checkbox {
    margin-right: 1rem;
}

.wen__login_checkbox-label {
    font-size: 0.9rem;
}

.wen__login_checkbox-link {
    color: #3333ff;
    text-decoration: none;
}

.wen__login_checkbox-link:hover {
    text-decoration: underline;
}

.wen__login_submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.wen__login_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.wen__login_submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wen__login_register-link {
    text-align: center;
    font-size: 0.9rem;
}

.wen__login_register-link a {
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
}

.wen__login_register-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wen__login_container {
        padding: 1rem;
    }
    
    .wen__login_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wen__login_title {
        font-size: 1.5rem;
    }
    
    .wen__login_subtitle {
        font-size: 1rem;
    }
    
    .wen__login_form {
        padding: 1.5rem;
    }
}

.wen__recovery_container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
}

.wen__recovery_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #3333ff;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wen__recovery_subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.wen__recovery_form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wen__recovery_group {
    margin-bottom: 1.5rem;
}

.wen__recovery_label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.wen__recovery_input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Overpass Mono', monospace;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wen__recovery_input:focus {
    border-color: #3333ff;
    outline: none;
}

.wen__recovery_error {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.wen__recovery_checkbox-group {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.wen__recovery_checkbox {
    margin-right: 1rem;
}

.wen__recovery_checkbox-label {
    font-size: 0.9rem;
}

.wen__recovery_checkbox-link {
    color: #3333ff;
    text-decoration: none;
}

.wen__recovery_checkbox-link:hover {
    text-decoration: underline;
}

.wen__recovery_submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff00cc 0%, #3333ff 100%);
    color: white;
    border: none;
    border-radius: 2rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.wen__recovery_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.wen__recovery_submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wen__recovery_register-link {
    text-align: center;
    font-size: 0.9rem;
}

.wen__recovery_register-link a {
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
}

.wen__recovery_register-link a:hover {
    text-decoration: underline;
}

.wen__recovery_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.wen__recovery_modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.wen__recovery_modal-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #ff3333;
    margin-bottom: 1rem;
}

.wen__recovery_modal-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.wen__recovery_modal-btn {
    padding: 0.8rem 1.5rem;
    background: #3333ff;
    color: white;
    border: none;
    border-radius: 2rem;
    font-family: 'Archivo Black', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wen__recovery_modal-btn:hover {
    background: #2222cc;
}

@media (max-width: 768px) {
    .wen__recovery_container {
        padding: 1rem;
    }
    
    .wen__recovery_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wen__recovery_title {
        font-size: 1.5rem;
    }
    
    .wen__recovery_subtitle {
        font-size: 1rem;
    }
    
    .wen__recovery_form {
        padding: 1.5rem;
    }
}

.wen__privacy_root {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Overpass Mono', monospace;
    color: #333;
}

.wen__privacy_header {
    margin-bottom: 3rem;
    text-align: center;
}

.wen__privacy_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #3333ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wen__privacy_back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6600;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.wen__privacy_back-link:hover {
    color: #cc5200;
    transform: translateX(-5px);
}

.wen__privacy_section {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3333ff;
}

.wen__privacy_section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #3333ff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wen__privacy_text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wen__privacy_list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.wen__privacy_list-item {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    position: relative;
}

.wen__privacy_list-item:before {
    content: "•";
    color: #ff6600;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.wen__privacy_link {
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
}

.wen__privacy_link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wen__privacy_root {
        padding: 1rem;
    }
    
    .wen__privacy_title {
        font-size: 2rem;
    }
    
    .wen__privacy_section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wen__privacy_title {
        font-size: 1.5rem;
    }
    
    .wen__privacy_section-title {
        font-size: 1.3rem;
    }
}

.wen__cookie_root {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Overpass Mono', monospace;
    color: #333;
}

.wen__cookie_header {
    margin-bottom: 3rem;
    text-align: center;
}

.wen__cookie_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wen__cookie_date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.wen__cookie_back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.wen__cookie_back-link:hover {
    color: #2222cc;
    transform: translateX(-5px);
}

.wen__cookie_section {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #ff6600;
}

.wen__cookie_section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #ff6600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wen__cookie_text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wen__cookie_list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.wen__cookie_list-item {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    position: relative;
}

.wen__cookie_list-item:before {
    content: "•";
    color: #3333ff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.wen__cookie_highlight {
    color: #ff6600;
    font-weight: 700;
}

.wen__cookie_link {
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
}

.wen__cookie_link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wen__cookie_root {
        padding: 1rem;
    }
    
    .wen__cookie_title {
        font-size: 2rem;
    }
    
    .wen__cookie_section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wen__cookie_title {
        font-size: 1.5rem;
    }
    
    .wen__cookie_section-title {
        font-size: 1.3rem;
    }
}

.wen__responsible_root {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Overpass Mono', monospace;
    color: #333;
}

.wen__responsible_header {
    margin-bottom: 3rem;
    text-align: center;
}

.wen__responsible_title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: #00cc66;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wen__responsible_back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.wen__responsible_back-link:hover {
    color: #2222cc;
    transform: translateX(-5px);
}

.wen__responsible_section {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #00cc66;
}

.wen__responsible_section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #00cc66;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wen__responsible_text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wen__responsible_list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.wen__responsible_list-item {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    position: relative;
}

.wen__responsible_list-item:before {
    content: "•";
    color: #00cc66;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.wen__responsible_link {
    color: #3333ff;
    text-decoration: none;
    font-weight: 700;
}

.wen__responsible_link:hover {
    text-decoration: underline;
}

.wen__responsible_highlight {
    color: #ff6600;
    font-weight: 700;
}

@media (max-width: 768px) {
    .wen__responsible_root {
        padding: 1rem;
    }
    
    .wen__responsible_title {
        font-size: 2rem;
    }
    
    .wen__responsible_section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .wen__responsible_title {
        font-size: 1.5rem;
    }
    
    .wen__responsible_section-title {
        font-size: 1.3rem;
    }
}