* {
    box-sizing: border-box;
    scroll-behavior: smooth !important;
    padding: 0;
    margin: 0;
}

*::selection {
    background-color: #2a56e7;
    color: var(--white);
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 1080px;
    background: var(--black8);
}

ul,
ol,
li {
    list-style: none;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.t-90 {
    transform: rotateZ(-90deg);
}

input::placeholder,
textarea::placeholder {
    color: var(--black3);
    font-size: clamp(17px, 2.5vw, 18px);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.01em;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

a {
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    cursor: pointer;
    transition: opacity 0.3s ease;


}

a:hover {
    opacity: 0.8;
}

button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    border: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    background: transparent;


}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.8;
}

button:disabled {
    cursor: auto;
}

button:disabled:hover {
    opacity: 1;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lang-dropdown {
    position: relative;
    user-select: none;
    font-family: sans-serif;
    z-index: 9999;
    color: var(--white);
    line-height: 1.3;
    display: flex;

}

.lang-dropdown.open .lang-options {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.lang-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    cursor: pointer;
}

.lang-selected img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 6px;
}

.lang-selected span:before {
    color: var(--white);
}

.lang-options {
    position: absolute;
    width: 140px;
    top: 40px;
    left: 50%;
    padding: 6px;
    background: var(--white);
    border: 1px solid #eaecf2;
    border-radius: 12px;
    margin-top: 4px;
    display: none;
    flex-direction: column;
    transform: translateX(-50%);
}


.lang-options a {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    border-radius: 8px;
    gap: 8px;
    width: 100%;
    padding: 8px;
    cursor: pointer;
    margin-bottom: 4px;
    border: none;
    background: transparent;
    margin-bottom: 0;
    font-size: 17px;
}

.lang-options a span {
    color: var(--black1);

}

.lang-options a:hover {
    color: var(--black1);
    background-color: var(--black4);
    filter: none;
}

.lang-options a img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}