* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #000;
    color: white;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Видео на фоне */
#bg-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

/* Экран входа */
#enter-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.8s ease;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Контейнер контента */
.container {
    opacity: 0;
    transition: opacity 1.5s ease;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Стеклянная карточка */
.profile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Для мобилок Safari */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    width: 320px;
    max-width: 90%; /* Чтобы на мобилке влезло */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.username {
    font-size: 26px;
    font-weight: 600;
    height: 35px;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.badges {
    margin: 10px 0;
    font-size: 20px;
}

.description {
    font-size: 14px;
    color: #999;
}

/* Громкость */
.volume-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    z-index: 110;
}

#volume-control {
    width: 70px;
    margin-left: 10px;
    cursor: pointer;
    accent-color: #fff;
}

/* Стили для прыгающей гифки */
#moving-gif {
    position: absolute;
    width: 250px; 
    height: auto;
    cursor: pointer;
    z-index: 50;
    user-select: none;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
    -webkit-user-drag: none;
}

/* На телефонах гифки будут меньше */
@media (max-width: 600px) {
    #moving-gif {
        width: 150px;
    }
    .profile-card {
        padding: 30px 20px;
    }
}