:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --font-main: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-red: #ff4b4b;
    --accent-purple: #a78bfa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enter Screen */
.enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.enter-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.enter-content p {
    font-family: var(--font-main);
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Background Video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.4) grayscale(10%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Main Content */
.main-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.main-container.visible {
    opacity: 1;
}

.profile-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 440px;
    padding: 40px;
}

/* Staggered Entrance */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-container.visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-item:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-item:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-item:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-item:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* Avatar & Status Bubble */
.avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-minimal {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.avatar-status {
    position: absolute;
    top: 5px;
    left: calc(100% - 5px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: bubbleFloat 4s ease-in-out infinite alternate;
}

.avatar-status::after {
    display: none;
}

.avatar-status a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

@keyframes bubbleFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

.avatar-minimal:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}

/* Typography */
.username-minimal {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    background: linear-gradient(180deg, #fff 0%, #bbb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-minimal {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
}

/* Social Icons */
.socials-minimal {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.social-icon {
    color: var(--text-main);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.social-icon:hover {
    transform: translateY(-4px);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Discord Tooltip */
.discord .tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.discord.copied .tooltip {
    opacity: 1;
    bottom: -30px;
}

/* Info Blocks */
.info-blocks {
    width: 100%;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-icon.project {
    color: var(--accent-purple);
}

.info-item a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: border-color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item a:hover {
    border-color: #fff;
}

/* Audio Player */
.audio-widget {
    width: 100%;
}

.view-counter-minimal {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.player-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) url(#liquid-glass-filter);
    -webkit-backdrop-filter: blur(20px) url(#liquid-glass-filter);
    position: relative;
    overflow: hidden;
}

.cover-art {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.track-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    letter-spacing: -0.5px;
    color: #ffffff !important;
    text-transform: none;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time {
    font-size: 0.6rem;
    color: var(--text-muted);
    min-width: 25px;
}

.progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.progress {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.player-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-controls button:hover {
    transform: scale(1.1);
    color: var(--accent-purple);
}

/* Minimal Visualizer */
#audio-visualizer {
    width: 100%;
    height: 50px;
    margin-top: 15px;
    opacity: 0.8;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
    .profile-center {
        width: 90%;
        padding: 30px 20px;
    }

    .avatar-status {
        position: static;
        margin-top: 10px;
        animation: none;
    }

    .avatar-status::after {
        display: none;
    }
}