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

@media (max-width: 768px) {
    body header {
        margin-top: 45px !important;
    }

    body main {
        gap: 35px !important;
        margin-top: 130px !important;
    }

    body main h1 {
        font-size: 18px !important;
        line-height: 25px !important;
        font-weight: 300 !important;
        max-width: calc(100vw - 1rem) !important;
    }

    body main p.reason {
        font-weight: 300 !important;
        font-size: 14px !important;
        line-height: 18px !important;
    }

    .lang-switcher {
        right: 15px;
    }

    .lang-btn {
        padding: 6px 10px;
    }

    .lang-current {
        font-size: 12px;
    }

    .lang-btn svg {
        width: 10px;
        height: 6px;
    }
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000000;
    min-height: 99vh;
    overflow: hidden;
}

body header {
    margin-top: 65px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 100;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-current {
    font-family: Geist;
    font-weight: 500;
    font-size: 14px;
    color: white;
    letter-spacing: 0.5px;
}

.lang-btn svg {
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 16px;
    font-family: Geist;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(205, 255, 101, 0.1);
    color: #CDFF65;
}

.lang-option.active {
    color: #CDFF65;
    background: rgba(205, 255, 101, 0.05);
}

body main {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    height: 100%;
    margin-top: 150px;
}

body main h1 {
    font-family: Geist;
    font-weight: 500;
    font-size: 32px;
    line-height: 33.6px;
    letter-spacing: -1.4%;
    text-align: center;
    color: white;
    max-width: 700px;
}

body main p.reason {
    font-family: Geist;
    font-weight: 300;
    font-size: 20px;
    color: var(--Text-body, #999999);
    line-height: 24px;
    letter-spacing: -1.4%;
    text-align: center;
    max-width: 300px;
}

body main a {
    width: 196px;
    height: 35px;
    opacity: 1;
    border-radius: 100px;
    padding-top: 10px;
    padding-right: 14px;
    padding-bottom: 10px;
    padding-left: 14px;
    gap: 10px;
    background: #CDFF65;
    font-family: Geist;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    text-align: center;
    color: black;
    border: none;
}

body footer {
    font-family: Geist;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    padding-bottom: 30px;
    margin-top: auto;
}