/* GLOBAL */
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    color: #e6e6e6;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Carbon background */
.carbon-bg {
    background: repeating-linear-gradient(
        45deg,
        #0f0f0f,
        #0f0f0f 10px,
        #111 10px,
        #111 20px
    );
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: #b56bff;
    cursor: pointer;
    z-index: 1000;
    text-shadow: 0 0 10px #b56bff;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: #000;
    border-right: 1px solid #1a1a1a;
    padding: 20px;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.sidebar .logo {
    width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 18px #00e1ff);
}

.sidebar h2 {
    color: #7ddcff;
    margin-top: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00c8ff;
}

.sidebar a {
    display: block;
    margin: 12px 0;
    color: #b3eaff;
    text-decoration: none;
    transition: 0.2s;
}

.sidebar a:hover,
.sidebar a.active {
    color: #00c8ff;
    text-shadow: 0 0 8px #00c8ff;
}

/* MAIN CONTENT */
.main {
    flex: 1;
    overflow-y: auto;
    padding: 20px 40px 40px 40px;
}

/* BANNER */
.banner {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.banner-img {
    max-width: 500px;
    width: 80%;
    display: inline-block;
    margin: 0 auto;
    filter: drop-shadow(0 0 25px #00e1ff);
}

/* BIO / PANELS */
.bio {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1);
    margin-top: 20px;
}

.bio h1 {
    color: #7ddcff;
    letter-spacing: 3px;
    text-shadow: 0 0 12px #00e1ff;
}

.bio .aka {
    font-size: 1rem;
    color: #b3eaff;
    text-shadow: 0 0 8px #00e1ff;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.2);
}

/* RELEASE CARDS */
.release-card {
    background: rgba(20, 0, 40, 0.4);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #3a0066;
    box-shadow: 0 0 15px rgba(181, 107, 255, 0.3);
}

.release-card a {
    color: #b56bff;
    text-shadow: 0 0 10px #b56bff;
}

/* MOBILE */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        transform: translateX(-100%);
        z-index: 999;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main {
        padding: 20px;
    }

    .banner-img {
        width: 90%;
    }
}
