* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Stop scrolling */
    user-select: none;
}
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%) blur(4px);
}
.enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
    transition: opacity 1.5s ease-out, filter 1.5s ease-out; /* Ghost fading */
}
.enter-screen.fade-out {
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
}

.click-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.volume-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s;
    z-index: 100;
}

.volume-btn:hover {
    transform: scale(1.1);
}
.hidden {
    display: none !important;
}
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    animation: mainFadeIn 2s ease-in-out;
    perspective: 1000px; /* For 3D Tilt */
}

@keyframes mainFadeIn {
    0% { opacity: 0; filter: blur(5px); transform: scale(0.95); }
    100% { opacity: 1; filter: blur(0px); transform: scale(1); }
}
.layout-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 95vw;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* smooth follow */
    will-change: transform;
    z-index: 10;
}
.glass-panel {
    width: 380px;
    max-width: 100%;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    transform-style: preserve-3d;
}

@media (max-width: 850px) {
    .layout-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.card-inner {
    transform: translateZ(30px); /* Pushes content out slightly for parallax */
}
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.title-container h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
}
.badges-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.custom-badge {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: -8px;
}

.custom-badge svg {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
}

.custom-badge:hover svg {
    transform: scale(1.1);
}

.badge-trophy svg { fill: #ffd700; filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4)); }
.badge-dev svg { fill: #b983ff; filter: drop-shadow(0 0 8px rgba(185, 131, 255, 0.4)); }
.badge-verified svg { fill: #1da1f2; filter: drop-shadow(0 0 8px rgba(29, 161, 242, 0.4)); }

.custom-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: opacity 0.2s ease, bottom 0.2s ease;
    z-index: 1000;
}

.custom-badge:hover::after {
    opacity: 1;
    bottom: calc(100% + 5px);
}

.status {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.bio-text {
    font-style: italic;
    color: #fff;
    opacity: 0.9;
    font-weight: 600;
}
.music-player {
    display: flex;
    align-items: center;
    background: rgba(40, 40, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.music-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.album-cover {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
    z-index: 1;
}

.song-info {
    flex: 1;
    z-index: 1;
}

.song-title {
    font-size: 14px;
    font-weight: 700;
}

.artist-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%; /* Dummy progress */
    background: #fff;
    border-radius: 2px;
}

.time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 0px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.card-footer {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.stat i {
    margin-right: 5px;
}
.lyrics-container {
    height: 70px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    border-radius: 8px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.lyrics-scroll {
    position: absolute;
    width: 100%;
    top: 35px;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lyric-line {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    filter: blur(2px);
    margin: 6px 0;
    transform: scale(0.9);
    cursor: default;
}

.lyric-line.active {
    color: rgba(255, 255, 255, 1);
    filter: blur(0px);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
body, body * {
    cursor: none !important;
}

.custom-cursor-dot, .custom-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    will-change: transform, filter;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,1);
}

.custom-cursor-trail {
    width: 16px;
    height: 16px;
    background-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
    filter: blur(2px);
    transition: opacity 0.2s ease;
}
.cursor {
    animation: blink-caret 0.8s step-end infinite;
    font-weight: 500;
}
@keyframes blink-caret {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}
