@font-face {
    font-family: 'optispire';
    src: url('fonts/OPTISPIRE.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'web';
    src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'web';
    src: url('fonts/BebasNeueCyrillic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'web';
    overflow: hidden;
    position: relative;
}

a {
    text-decoration: none;
}

.content-wrapper {
    height: auto;
    max-height: 50%;
    width: 70%;
    max-width: 70%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1;
    padding: 30px;
}

/* .text-container {
    display: inline-flex;
    justify-content: center; 
    align-items: center;
    position: relative;
    width: 384%;
    z-index: 0;
    /* border: 1px solid red; */


/* ФОН — ИСПРАВЛЕНО */
.background {
    position: fixed;  /* fixed, а не absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    transform: translateZ(0);
}

/* СОЦИАЛЬНЫЕ СЕТИ */
.socials {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 100px;
    z-index: 1;
    user-select: none;
}

/* КНОПКА ВХОДА — ОБЪЕДИНЯЕМ */




/* Скрываем дублирующие элементы */


/* ТЕКСТОВЫЕ ЭФФЕКТЫ */
.main-text {
    color: white;
    font-size: 2rem;
    font-weight: normal;
    white-space: normal;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.1, 0.3, 0.0, 1);
    position: relative;
    z-index: 2;
}

.aska {
    height: 200px;
    width: 200px;
    object-fit: cover;
    display: flex;
    animation: rotate 14s linear infinite;
    user-select: none;
    transition: all 0.5s cubic-bezier(0.1, 0.3, 0.0, 1);
}
.aska img {
    transition: all 0.5s cubic-bezier(0.4, 0.3, 0.3, 1);
}
.aska:hover {
    transform: scale(1.1) rotate(360deg);
}
.aska:hover img {
    transform: scale(1.1) rotate(360deg);
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.musiclinks {
    height: auto;
    width: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.musiclinks a img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.1, 0.3, 0.5, 1);
    filter: invert(1);
}

.youtube:hover .youtubelogo:hover {
    transform: scale(1.1);
}
.soundcloud:hover .soundcloudlogo:hover {
    transform: scale(1.1);
}


/* ИКОНКИ */
.telegram .telegramlogo {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.1, 0.3, 0.5, 1);
    filter: invert(1);
}

.telegram:hover .telegramlogo:hover {
    transform: scale(1.1);
}


.header {
    padding: 10px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    top: 0%; 
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 7;
}

header .logo {
    display: flex;
    justify-self: flex-start;
    width: 80px;
    height: 80px;
    object-fit: cover;
    user-select: none;
}

header nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content:space-between;
    gap: 100px;
    font-size: 2rem;
}
header nav ul li a {
    color: rgb(179, 179, 179);
    transition: all 0.2s cubic-bezier(0.1, 0.3, 0.5, 1);
}
header nav ul li a:hover {
    color: rgb(255, 255, 255);
    letter-spacing: 1rem;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}



.loginmain {
    display: flex;
    justify-self: flex-end;
    background-color: white;
    font-family: 'web';
    font-size: 1.5rem;
    color: black;
    border: 3px solid white;
    transition: all 0.2s cubic-bezier(0.1, 0.3, 0.5, 1);
    z-index: 1;
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}
.loginmain:hover {
    background-color: black;
    color: white;
    box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.3);
}
