/* Phone Mockup CSS Placeholder */
.mockup-container {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-ui {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.album-art {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.track-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.bar.short {
    width: 60%;
}

.bar.long {
    width: 90%;
}

.controls {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    margin-top: 20px;
}

.play-btn {
    width: 60px;
    height: 60px;
    fill: white;
}

/* Floating Icons */
.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.icon-1 {
    top: 10%;
    left: -40px;
    animation: float 4s ease-in-out infinite 1s;
    color: var(--gold);
}

.icon-2 {
    top: 40%;
    right: -40px;
    animation: float 5s ease-in-out infinite 0.5s;
    color: var(--accent);
}

.icon-3 {
    bottom: 15%;
    left: -20px;
    animation: float 4.5s ease-in-out infinite 1.5s;
    color: #22c55e;
}