/* Musician Portfolio Styles */

:root {
    --accent: #00ff88;
    --bg-black: #050505;
    --bg-darker: #0a0a0a;
}

body {
    background-color: var(--bg-black);
    color: #fff;
    font-family: 'Roboto Mono', monospace;
    padding-bottom: 80px; /* For fixed player */
    padding-top: 56px; /* For fixed nav */
}

/* Hero video/image background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.z-2 {
    position: relative;
    z-index: 2;
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-mono {
    font-family: 'Roboto Mono', monospace;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.ls-2 {
    letter-spacing: 2px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: #fff;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    100% { clip: rect(70px, 9999px, 90px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(10px, 9999px, 80px, 0); }
    100% { clip: rect(90px, 9999px, 10px, 0); }
}

/* Scroll Down */
.scroll-down {
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* Track List */
.track-item {
    transition: background-color 0.3s ease;
}

.track-item:hover {
    background-color: rgba(255,255,255,0.05);
}

.track-item.active {
    background-color: rgba(0, 255, 136, 0.05);
}

/* Social Buttons */
.btn-social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    line-height: 38px;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-social i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

.btn-social:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

/* Tour Items */
.tour-item {
    transition: background-color 0.3s ease;
}

.tour-item:hover {
    background-color: rgba(255,255,255,0.05);
}

/* Vinyl Spin */
.vinyl-spin {
    animation: spin 10s linear infinite;
    border-radius: 50%;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Controls */
.cursor-pointer {
    cursor: pointer;
}

.progress-bar {
    background-color: var(--accent);
}
