body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    max-height: 100vh;
    height: 100vh;
}

.lang-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 10vw;
}

.lang-dropdown {
    justify-self: flex-end;
    align-self: flex-end;
    position: relative;
    width: 100%;
    width: var(--space-xl);
}

.lang-dropdown__btn {

    width: auto;
    height: 1vh;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    padding: 1vw;


    background: none;
    border: none;
}

.lang-dropdown__btn span {
    font-family: 'Inter', sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    color: white;
}

.lang-dropdown__btn svg {
    width: 1vw;
}

.lang-dropdown__list {
    position: absolute;
    top: 4vh;
    left: 0;
    width: 100%;

    background: #090909;
    border: none;

    display: none;
    flex-direction: column;

    max-height: 0;
    overflow-y: auto;
    border-top: 1px solid white;
    padding: 1vh 0;
    
}

.lang-dropdown.open .lang-dropdown__list {
    display: flex;
    max-height: 4vh;
}


.lang-dropdown__option {
    font-family: 'Inter', sans-serif;
    font-size: 1vw;
    text-transform: uppercase;
    color: white;

    height: 2vh;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: none;
    border: none;
    border-top: 1px solid white;
}

.lang-dropdown__option:first-child {
    border-top: none;
}




.container {
    padding: 2vh 0;
    width: 100%;
    height: 100vh;
    background-color: #090909;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    overflow: hidden;
}





.logo {
    width: 30vw;
    animation: fadeInFloat 3s ease-out forwards, float 4s ease-in-out 1.5s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInFloat {
  0% {
    opacity: 0;
    transform: translateY(20px) translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(0px);
  }
}







.text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1.2vw;
    color: white;
}

.discover {
    margin-top: 30vh;
    width: 20vw;
    height: 3vw;
    background-image: url(/image/gradient.png);
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1vw;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.25);
    color: white;
}

/* Hover */
.discover:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 40px rgba(255, 255, 255, 0.25);
}

/* Active (при клике) */
.discover:active {
    transform: scale(0.98);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.15);
}

/* Focus (для доступности) */
.discover:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Disabled (если будет неактивна) */
.discover:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.email-form-wrapper {
    padding: 20vh 0;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    align-items: center;
}

.email-form-text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1.2vw;
    color: white;
}

.email-form {
    display: flex;
    gap: 2vw;
    justify-content: center;
    align-items: center;
}

.email-input {
    box-sizing: border-box;
    height: 5vh;
    width: 15vw;
    padding: 0 1vw;
    border: 1px solid white;
    background: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1vw;
    color: white;
    outline: none;
}

.email-submit {
    width: 7vw;
    height: 5vh;
    border: none;
    background-image: url(/image/gradient.png);
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1vw;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.25);
    color: white;
}

.email-submit:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 40px rgba(255, 255, 255, 0.25);
}

/* Active (при клике) */
.email-submit:active {
    transform: scale(0.98);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.15);
}

/* Focus (для доступности) */
.email-submit:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Disabled (если будет неактивна) */
.email-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.thank-you-message {
    padding: 20vh;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    align-items: center;
}

.thank-you-text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 1.2vw;
    color: white;
}

@media (max-width: 450px) {
    body {
        overflow: hidden;
        max-height: 100vh;
    }
    .logo {
        margin-top: 10vh;
        width: 80vw;
    }

    .lang-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 10vw;
}

.lang-dropdown {
    justify-self: flex-end;
    align-self: flex-end;
    position: relative;
    width: 100%;
    width: auto;
    z-index: 1000;
    margin-right: 4vw;
}

.lang-dropdown__btn {

    width: auto;
    height: 4vw;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    padding: 1vw;


    background: none;
    border: none;
    z-index: 1000;
}

.lang-dropdown__btn span {
    font-family: 'Inter', sans-serif;
    font-size: 4vw;
    text-transform: uppercase;
    color: white;
}

.lang-dropdown__btn svg {
    width: 4vw;
}

.lang-dropdown__list {
    position: absolute;
    top: 3vh;
    left: 0;
    width: 100%;

    background: #090909;
    border: none;

    display: none;
    flex-direction: column;

    max-height: 0;
    overflow-y: auto;
    border-top: 1px solid white;
    padding: 1vh 0;
    z-index: 1000;
    
}

.lang-dropdown.open .lang-dropdown__list {
    display: flex;
    max-height: 4vh;
}


.lang-dropdown__option {
    font-family: 'Inter', sans-serif;
    font-size: 4vw;
    text-transform: uppercase;
    color: white;

    height: 2vh;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: none;
    border: none;
    border-top: 1px solid white;
    z-index: 10000;
}

.lang-dropdown__option:first-child {
    border-top: none;
}

.text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 4vw;
    color: white;
}

.discover {
    margin-top: 30vh;
    width: 60vw;
    height: 5vh;
    background-image: url(/image/gradient.png);
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 4vw;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.25);
    color: white;
}

.email-form-wrapper {
    padding: 20vh 0;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    align-items: center;
}

.email-form-text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 4vw;
    color: white;
    max-width: 80vw;
    text-align: center;
}

.email-form {
    display: flex;
    gap: 2vw;
    justify-content: center;
    align-items: center;
}

.email-input {
    box-sizing: border-box;
    height: 5vh;
    width: 60vw;
    padding: 0 4vw;
    border: 1px solid white;
    background: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 4vw;
    color: white;
    outline: none;
}

.email-submit {
    width: 20vw;
    height: 5vh;
    border: none;
    background-image: url(/image/gradient.png);
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 4vw;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.25);
    color: white;
}

.thank-you-message {
    padding: 20vh 0;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    align-items: center;
}

.thank-you-text {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 4vw;
    color: white;
    max-width: 80vw;
    text-align: center;
}
}

.t1 {
    margin-bottom: 40px;
    text-align: center;
}

.h1 {
    margin-bottom: 40px;
    text-align: center;
}





