* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    color: white;
    overflow: hidden;
}

/* Background */
.bg {
    position: fixed;
    inset: 0;
    background: url("bg.jpg") center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.1);
    z-index: -2;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

/* Card */
.profile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    padding: 30px;
    background: rgba(20,20,20,0.65);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}

/* Fade in */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Avatar */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #00ffd5;
    margin-bottom: 15px;
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px #00ffd5; }
    50% { box-shadow: 0 0 35px #00ffd5; }
    100% { box-shadow: 0 0 15px #00ffd5; }
}

.desc {
    opacity: 0.85;
    font-size: 14px;
}

.location {
    margin-top: 5px;
    opacity: 0.7;
}

/* Music bar */
.music-bar {
    margin-top: 18px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    cursor: pointer;
}

.music-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.music-icon {
    font-size: 16px;
    transition: 0.3s;
}

.playing .music-icon {
    color: #00ffd5;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

/* Progress */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: #00ffd5;
    transition: width 0.2s;
}

/* Social */
.social {
    margin-top: 15px;
}

.social a {
    color: white;
    margin: 0 8px;
    font-size: 18px;
    transition: 0.3s;
}

.social a:hover {
    color: #00ffd5;
}
.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.social a:hover {
    background: rgba(0,255,213,0.15);
    box-shadow: 0 0 15px #00ffd5;
    transform: translateY(-3px);
}
