/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: #000000;
    color: #f0f0f0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* App Container */
.app-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    position: relative;
}

/* Sidebar */
.sidebar {
    background: rgba(0, 0, 0, 0.9);
    border-right: 1px solid #333333;
    padding: 30px 0 140px 0;
    position: relative;
    z-index: 10;
    height: 100vh;
    overflow-y: auto;
}

/* Logo */
.logo {
    padding: 0 30px 40px 30px;
    border-bottom: 1px solid #333333;
    margin-bottom: 30px;
}

.logo h1 {
    font-family: 'Jura', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #ff69b4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.terminal-timestamp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(240, 240, 240, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.timestamp-label {
    color: var(--accent-color, #ff69b4);
    font-weight: 400;
    text-shadow: 0 0 5px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
}

.timestamp-value {
    color: rgba(240, 240, 240, 0.9);
    font-weight: 300;
    animation: timestampBlink 2s ease-in-out infinite;
}

@keyframes timestampBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Menu */
.menu {
    padding: 0 20px;
}

.menu-list {
    list-style: none;
}

.menu-item {
    margin-bottom: 8px;
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #f0f0f0;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.1s linear;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-link:hover {
    background: rgba(51, 51, 51, 0.3);
    color: #ffffff;
    transform: translateX(5px);
    border-color: #333333;
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.5);
}

.menu-link i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.menu-item.active .menu-link {
    background: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 105, 180, 0.3),
        inset 0 0 20px rgba(255, 105, 180, 0.1);
    position: relative;
    animation: menuPulse 3s ease-in-out infinite;
}

@keyframes menuPulse {
    0%, 100% {
        border-color: rgba(255, 105, 180, 0.3);
        box-shadow: 
            0 0 20px rgba(255, 105, 180, 0.3),
            inset 0 0 20px rgba(255, 105, 180, 0.1);
    }
    50% {
        border-color: rgba(255, 105, 180, 0.8);
        box-shadow: 
            0 0 30px rgba(255, 105, 180, 0.6),
            inset 0 0 30px rgba(255, 105, 180, 0.2);
    }
}

.menu-item.active .menu-link::before {
    content: '>>';
    position: absolute;
    left: -25px;
    color: #ff69b4;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    animation: terminalBlink 1.5s infinite;
}

@keyframes terminalBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Main Content */
.main-content {
    position: relative;
    padding: 40px;
    overflow: hidden;
}



/* Sliding Panel */
.sliding-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.15);
    transform: translateX(-100%);
    transition: transform 0.1s ease;
    z-index: 1;
    pointer-events: none;
    filter: blur(8px);
    backdrop-filter: blur(15px);
    opacity: 0.6;
}

/* Trailing Blur Effect */
.sliding-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--before-gradient, linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 180, 0.06) 20%,
        rgba(255, 105, 180, 0.12) 40%,
        rgba(255, 105, 180, 0.06) 60%,
        transparent 100%
    ));
    transform: inherit;
    transition: transform 0.1s ease;
    filter: blur(25px);
    z-index: 2;
}

.sliding-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--after-gradient, linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 105, 180, 0.03) 30%,
        rgba(255, 105, 180, 0.06) 50%,
        rgba(255, 105, 180, 0.03) 70%,
        transparent 100%
    ));
    transform: inherit;
    transition: transform 0.1s ease;
    filter: blur(40px);
    z-index: 3;
}

/* Active state for trailing blur - inherits parent transform */
.sliding-panel.active::before,
.sliding-panel.active::after {
    transform: inherit;
}

/* Content Sections */
.content-section {
    display: none;
    position: relative;
    z-index: 2;
}

.content-section.active {
    display: block;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 280px;
    width: calc(100vw - 280px);
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 280px;
    width: calc(100vw - 280px);
    height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(255, 105, 180, 0.08) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 2;
    backdrop-filter: blur(3px);
}

/* Scanline Effect */
.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 105, 180, 0.08) 2px,
        rgba(255, 105, 180, 0.08) 4px
    );
    animation: scanlines 8s linear infinite;
    z-index: 3;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 70vh;
    position: relative;
    justify-content: center;
    z-index: 3;
}

.hero-title {
    font-family: 'Jura', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 
        0 0 30px rgba(255, 105, 180, 0.8),
        0 0 60px rgba(255, 105, 180, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 4;
}

.hero-statement {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240, 240, 240, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 40px;
    z-index: 4;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.section-header h2 {
    font-family: 'Jura', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color, #ff69b4);
    text-shadow: 0 0 15px rgba(var(--accent-color-rgb, 255, 105, 180), 0.6);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding: 0 0 0 15px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 1px;
    height: 20px;
    background: var(--accent-color, #ff69b4);
    opacity: 0.8;
    transform: translateY(-50%);
    animation: branchPulse 3s ease-in-out infinite;
}

@keyframes branchPulse {
    0%, 100% { 
        opacity: 0.4;
        height: 20px;
    }
    50% { 
        opacity: 0.9;
        height: 25px;
    }
}

/* Artist Selection */
.artist-selection {
    display: none;
    margin-top: 40px;
}

.artist-selection.active {
    display: block;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.artist-card {
    background: rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #333333;
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.artist-card:hover {
    transform: translateY(5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border-color: var(--accent-color, #ff69b4);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.9) 100%
    );
    transition: all 0.3s ease;
}

.artist-card:hover .artist-overlay {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.artist-card h3 {
    font-family: 'Jura', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.artist-card:hover h3 {
    color: var(--accent-color, #ff69b4) !important;
    text-shadow: 
        0 0 20px rgba(var(--accent-color-rgb, 255, 105, 180), 0.8),
        0 0 40px rgba(var(--accent-color-rgb, 255, 105, 180), 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-12px) !important;
}

.artist-card p {
    display: none !important;
}



/* Artist Profiles */
.artist-profile {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: calc(100vh - 200px);
    margin-top: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333333;
    overflow: hidden;
}

.artist-profile.active {
    display: grid;
}

.artist-content {
    padding: 40px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    height: 100%;
    position: relative;
}

.breadcrumb-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    margin-bottom: 0;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(240, 240, 240, 0.9);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333333;
    border-radius: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.breadcrumb-link:hover {
    color: var(--accent-color, #ff69b4);
    border-color: var(--accent-color, #ff69b4);
    background: rgba(0, 0, 0, 0.95);
}

.breadcrumb-link i {
    font-size: 12px;
}

.artist-info {
    max-width: 500px;
}

.artist-name {
    font-family: 'Jura', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color, #ff69b4);
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--accent-color, #ff69b4);
}

.artist-bio {
    margin-bottom: 40px;
}

.artist-bio p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(240, 240, 240, 0.9);
    margin-bottom: 20px;
}

.latest-releases h3,
.listen-on h3 {
    font-family: 'Jura', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.release-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.release-info h4 {
    font-family: 'Jura', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color, #ff69b4);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
}

.release-info p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: rgba(240, 240, 240, 0.8);
    line-height: 1.6;
}

.platform-links {
    display: flex;
    gap: 15px;
}

.platform-link {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-link.spotify {
    background: #1DB954;
    color: #ffffff;
}

.platform-link.apple {
    background: #FA243C;
    color: #ffffff;
}

.platform-link.soundcloud {
    background: #ff7700;
    color: #ffffff;
}

.platform-link.youtube {
    background: #FF0000;
    color: #ffffff;
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.artist-visual {
    position: relative;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(var(--accent-color-rgb, 255, 105, 180), 0.05) 50%,
        transparent 100%
    );
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.4; }
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(50%) contrast(110%) brightness(95%);
}

.interface-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.scanline-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(var(--accent-color-rgb, 255, 105, 180), 0.1) 2px,
        rgba(var(--accent-color-rgb, 255, 105, 180), 0.1) 4px
    );
    animation: scanlines 8s linear infinite;
    opacity: 0.3;
}

.data-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
    padding: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent-color, #ff69b4);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb, 255, 105, 180), 0.3);
}

.data-line {
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
    animation: dataPulse 3s ease-in-out infinite;
}

.data-line:nth-child(1) { animation-delay: 0s; }
.data-line:nth-child(2) { animation-delay: 0.5s; }
.data-line:nth-child(3) { animation-delay: 1s; }
.data-line:nth-child(4) { animation-delay: 1.5s; }

@keyframes dataPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.release-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color, #ff69b4);
}

.release-artwork {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-color-rgb, 255, 105, 180), 0.1);
    border: 2px solid rgba(var(--accent-color-rgb, 255, 105, 180), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.release-artwork i {
    font-size: 32px;
    color: var(--accent-color, #ff69b4);
}

.release-card:hover .release-artwork {
    border-color: rgba(var(--accent-color-rgb, 255, 105, 180), 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb, 255, 105, 180), 0.3);
}

.release-info {
    flex: 1;
    text-align: left;
}

.release-info h3 {
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.release-artist {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #f0f0f0;
    margin-bottom: 5px;
}

.release-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-color, #ff69b4);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
    animation: streamingPulse 2s ease-in-out infinite;
    position: relative;
}

.release-date::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-color, #ff69b4);
    border-radius: 50%;
    animation: streamingDot 1.5s ease-in-out infinite;
}

@keyframes streamingPulse {
    0%, 100% { 
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 15px rgba(var(--accent-color-rgb, 255, 105, 180), 0.8);
    }
}

@keyframes streamingDot {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}



/* Community Content */
.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
    border-radius: 0;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: #ff69b4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-number {
    font-family: 'Jura', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ff69b4;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

.stat-label {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

/* Discord Hype Card */
.discord-hype-card {
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discord-content {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.discord-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(88, 101, 242, 0.05) 50%, transparent 100%);
    animation: discordShimmer 3s ease-in-out infinite;
}

.discord-icon {
    font-size: 48px;
    color: #5865f2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
    animation: discordPulse 2s ease-in-out infinite;
}

.discord-content h3 {
    font-family: 'Jura', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.discord-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #5865f2;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Jura', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.discord-button i {
    font-size: 18px;
}

@keyframes discordPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(88, 101, 242, 0.9);
    }
}

@keyframes discordShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.community-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.community-feature:hover {
    transform: translateY(-5px);
    border-color: #ff69b4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.community-feature i {
    font-size: 36px;
    color: #ff69b4;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

.community-feature h3 {
    font-family: 'Jura', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.community-feature p {
    color: #cccccc;
    line-height: 1.6;
}

/* Connect Content */
.connect-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
    border-radius: 0;
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #ff69b4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.social-link i {
    font-size: 24px;
    margin-right: 15px;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.contact-form {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
    border-radius: 0;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--accent-color, #ff69b4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form h3 {
    font-family: 'Jura', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color, #ff69b4);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333333;
    border-radius: 0;
    color: #f0f0f0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color, #ff69b4);
    box-shadow: 0 0 10px rgba(var(--accent-color-rgb, 255, 105, 180), 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: rgba(var(--accent-color-rgb, 255, 105, 180), 0.1);
    border: 1px solid var(--accent-color, #ff69b4);
    border-radius: 0;
    color: var(--accent-color, #ff69b4);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: rgba(var(--accent-color-rgb, 255, 105, 180), 0.2);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb, 255, 105, 180), 0.3);
}

/* Responsive Design */
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333333;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.mobile-menu-toggle i {
    color: #f0f0f0;
    font-size: 18px;
}

.mobile-menu-toggle.active i {
    color: #ff69b4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: fixed;
        left: -100vw;
        top: 0;
        height: 100vh;
        width: 100vw;
        z-index: 1000;
        transition: left 0.3s ease;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .breadcrumb-nav {
        left: 0;
        top: 0;
    }
    
    .command-line {
        left: 0;
        width: 100%;
        padding: 15px 20px;
    }
    
    .video-background,
    .video-overlay {
        left: 0;
        width: 100%;
    }
    
    .video-background iframe {
        left: 50%;
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        min-width: 177.77vh;
        transform: translate(-50%, -50%);
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-statement {
        font-size: 14px;
        padding: 0 20px;
        max-width: 600px;
    }
    
    .section-header h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .artist-profile {
        grid-template-columns: 1fr;
        height: auto;
        min-height: calc(100vh - 200px);
    }
    
    .artist-content {
        padding: 30px;
    }
    
    .artist-name {
        font-size: 36px;
    }
    
    .artist-visual {
        height: 300px;
    }
    
    .music-player {
        flex-direction: column;
        text-align: center;
    }
    
    .player-controls {
        width: 100%;
    }
    
    .platform-links {
        justify-content: center;
    }
    
    .artists-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artist-card,
    .release-card {
        padding: 25px;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .community-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .connect-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .video-background iframe {
        width: 120vw;
        height: 67.5vw;
        min-height: 100vh;
        min-width: 148vh;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -100vw;
        top: 0;
        height: 100vh;
        width: 100vw;
        z-index: 1000;
        transition: left 0.3s ease;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    /* Ensure mobile menu covers everything */
    .sidebar {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .main-content {
        padding: 15px;
        padding-top: 80px;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 28px;
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .hero-statement {
        font-size: 13px;
        padding: 0 15px;
        max-width: 500px;
    }
    
    .section-header h2 {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .artist-card,
    .release-card {
        padding: 20px;
    }
    
    .release-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .release-info {
        text-align: center;
    }
    
    .command-line {
        display: none !important;
    }
    
    .command-prompt {
        font-size: 12px;
    }
    
    .legal-info {
        padding: 15px;
        font-size: 12px;
    }
    
    .artist-profile .artist-content {
        padding: 15px;
        padding-top: 20px;
    }
    
    .artist-profile .breadcrumb-nav {
        top: 10px !important;
        left: 10px !important;
        z-index: 1001 !important;
    }
    
    .artist-profile .breadcrumb-link {
        font-size: 11px !important;
        padding: 8px 12px !important;
    }
    
    .video-background iframe {
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        min-width: 177.77vh;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        top: 15px;
        left: 15px;
        padding: 10px;
    }
    
    .mobile-menu-toggle i {
        font-size: 16px;
    }
    
    .main-content {
        padding: 10px;
        padding-top: 70px;
        padding-bottom: 90px;
    }
    
    .hero-title {
        font-size: 24px;
        padding: 0 10px;
        margin-top: 15px;
    }
    
    .hero-statement {
        font-size: 12px;
        padding: 0 10px;
        max-width: 400px;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .artist-card,
    .release-card {
        padding: 15px;
    }
    
    .release-artwork {
        width: 60px;
        height: 60px;
    }
    
    .release-artwork i {
        font-size: 24px;
    }
    
    .command-line {
        display: none !important;
    }
    
    .command-prompt {
        font-size: 11px;
    }
    
    .legal-info {
        padding: 10px;
        font-size: 11px;
    }
    
    .artist-profile .artist-content {
        padding: 10px;
        padding-top: 15px;
    }
    
    .artist-profile .breadcrumb-nav {
        top: 8px !important;
        left: 8px !important;
        z-index: 1001 !important;
    }
    
    .artist-profile .breadcrumb-link {
        font-size: 10px !important;
        padding: 6px 10px !important;
    }
    
    .video-background iframe {
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        min-width: 177.77vh;
        transform: translate(-50%, -50%);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 105, 180, 0.3);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 105, 180, 0.5);
}

/* Command Line Footer */
.command-line {
    position: fixed;
    bottom: 0;
    left: 280px;
    width: calc(100vw - 280px);
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.command-prompt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #f0f0f0;
    margin-right: 15px;
    white-space: nowrap;
}

.command-prompt .user {
    color: #ff69b4;
    font-weight: 600;
}

.command-prompt .at {
    color: #f0f0f0;
}

.command-prompt .host {
    color: #ff69b4;
    font-weight: 600;
}

.command-prompt .colon {
    color: #f0f0f0;
}

.command-prompt .path {
    color: #ff69b4;
    font-weight: 600;
}

.command-prompt .dollar {
    color: #f0f0f0;
    margin-left: 5px;
}

.command-prompt .cursor {
    color: #ff69b4;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.command-input {
    flex: 1;
    margin: 0 20px;
}

.command-input input {
    width: 100%;
    background: transparent;
    border: none;
    color: #f0f0f0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
    padding: 5px 0;
}

.command-input input::placeholder {
    color: rgba(240, 240, 240, 0.5);
}

.terminal-stats {
    display: flex;
    gap: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #f0f0f0;
}

.terminal-stats .stat {
    white-space: nowrap;
}

.terminal-stats .value {
    color: #ffffff;
    font-weight: 600;
}

/* Legal Info */
.legal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.copyright {
    margin-bottom: 15px;
}

.copyright p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(240, 240, 240, 0.6);
    margin: 0;
    line-height: 1.4;
}

.copyright p:first-child {
    color: rgba(255, 105, 180, 0.8);
    font-weight: 500;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(240, 240, 240, 0.5);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 2px 0;
}

.legal-link:hover {
    color: rgba(255, 105, 180, 0.8);
    transform: translateX(3px);
}

/* BOOTLOADERS Radio Player */
.radio-player {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #ffffff;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.radio-player:hover {
    border-color: var(--accent-color, #ff69b4);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb, 255, 105, 180), 0.3);
}

.player-track {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    max-width: 200px;
}

.track-title {
    font-size: 12px;
    font-weight: bold;
    color: var(--accent-color, #ff69b4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.track-artist {
    font-size: 10px;
    color: #888888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333333;
    border-radius: 0;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.control-btn:hover {
    background: rgba(var(--accent-color-rgb, 255, 105, 180), 0.2);
    border-color: var(--accent-color, #ff69b4);
    transform: scale(1.05);
}

.control-btn.play-pause-btn {
    width: 32px;
    height: 32px;
    background: var(--accent-color, #ff69b4);
    border-color: var(--accent-color, #ff69b4);
    font-size: 12px;
}

.control-btn.play-pause-btn:hover {
    background: rgba(var(--accent-color-rgb, 255, 105, 180), 0.8);
    box-shadow: 0 0 10px rgba(var(--accent-color-rgb, 255, 105, 180), 0.5);
}

.player-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 100px;
}

.progress-bar {
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color, #ff69b4);
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    font-size: 9px;
    color: #888888;
    white-space: nowrap;
}

/* Responsive Radio Player */
@media (max-width: 768px) {
    .radio-player,
    .app-container .radio-player,
    body .radio-player {
        position: fixed !important;
        top: auto !important;
        bottom: 20px !important;
        right: 20px !important;
        left: 20px !important;
        width: auto !important;
        gap: 15px;
        padding: 15px 20px;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        z-index: 9999 !important;
        transform: none !important;

    }
    
    .player-track {
        min-width: 100px;
        max-width: 150px;
    }
    
    .player-progress {
        min-width: 80px;
    }
    
    .progress-bar {
        width: 80px;
    }
    
    .control-btn {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }
    
    .control-btn.play-pause-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .radio-player,
    .app-container .radio-player,
    body .radio-player {
        position: fixed !important;
        bottom: 15px !important;
        right: 15px !important;
        left: 15px !important;
        width: auto !important;
        justify-content: space-between;
        padding: 12px 15px;
        z-index: 9999 !important;
        transform: none !important;
    }
    
    .player-track {
        min-width: 80px;
        max-width: 120px;
    }
    
    .player-progress {
        min-width: 60px;
    }
    
    .progress-bar {
        width: 60px;
    }
}



 