/* Reset & Variables */
:root {
    --primary-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --bg-dark: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.1);
    --accent: #e0e0e0;
}

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

html,
body {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--primary-color);
}

/* Background Gradient & Overlay */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content wrapper ensuring it sits above overlay */
.navbar,
.hero,
.sidebar,
.site-footer {
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 200px);
    text-align: center;
}

.hero-content {
    margin-top: -50px;
}

.hero h1 {
    font-size: 54px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--text-muted);
}

.quote-author {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.5px;
    transform: translateX(200px);
}

/* Center Bottom Mouse Scroll */
.mouse-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

/* Sidebar for Concerts */
.sidebar {
    position: absolute;
    left: 60px;
    bottom: 120px;
    width: 320px;
}

.sidebar h2 {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.5px;
}

.concert-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.concert-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.concert-item:hover {
    transform: translateX(5px);
}

.concert-item:last-child {
    border-bottom: none;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.song-item.unreleased {
    opacity: 0.6;
    cursor: not-allowed;
}

.song-cover {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.details {
    flex-grow: 1;
}

.details h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.details p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.play-icon {
    color: var(--primary-color);
    opacity: 0.8;
    transition: transform 0.2s, color 0.2s;
}

.song-item:not(.unreleased):hover .play-icon {
    transform: scale(1.1);
    color: #fff;
}

/* Footer */
.site-footer {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-right {
    animation: fadeInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* --- NEW SECTIONS: SLOP & RELEASES --- */

.marquee-container {
    width: 100vw;
    overflow: hidden;
    background: #fff;
    color: #000;
    padding: 20px 0;
    margin: 60px 0;
    transform: rotate(-2deg) scale(1.05);
    border: 5px solid #333;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.marquee-content span {
    margin: 0 40px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.content-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.content-section h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    border-bottom: 4px solid #fff;
    padding-bottom: 10px;
}

/* Video Showcase Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.video-card {
    background: rgba(25, 25, 25, 0.8);
    border: 2px solid #555;
    padding: 20px;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.02) translateY(-10px);
    border-color: #fff;
}

.video-card img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #fff;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.video-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.audio-player {
    width: 100%;
    margin-top: 15px;
}

/* AI Slop Section */
.ai-slop {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60px 0;
}

.slop-box {
    flex: 1 1 300px;
    background: #111;
    border: 1px dotted rgba(255, 255, 255, 0.3);
    padding: 30px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.slop-box img {
    width: 100%;
    filter: grayscale(100%) contrast(150%);
    mix-blend-mode: screen;
    margin-bottom: 20px;
}

.slop-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    z-index: 0;
    pointer-events: none;
    animation: staticNoise 10s linear infinite;
}

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

@keyframes staticNoise {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 100px 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .sidebar {
        position: static;
        width: 100%;
        padding: 20px;
    }

    .quote-author {
        transform: translateX(0);
        margin-top: 20px;
    }

    .marquee-content {
        font-size: 2rem;
    }
}

/* Footer position update */
.site-footer {
    text-align: center;
    padding: 40px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    border-top: 1px solid #333;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}