@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --bg-dark: #070714;
    --bg-panel: #111126;
    --neon-blue: #00f0ff;
    --neon-purple: #b537f2;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-white);
}

/* Neon Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    width: 0%;
    z-index: 9999;
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-purple);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 10px var(--neon-blue), inset 0 0 10px var(--neon-blue); }
    50% { box-shadow: 0 0 25px var(--neon-purple), inset 0 0 15px var(--neon-purple); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-wrapper {
    animation: fadeIn 1s ease-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Footer */
header, footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(7, 7, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

footer {
    flex-direction: column;
    border-bottom: none;
    border-top: 1px solid rgba(181, 55, 242, 0.2);
    margin-top: auto;
}

.social-icons a {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
    transform: scale(1.2);
}

.logo-container img {
    height: 60px;
    margin-right: 30px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

/* Return Arrow */
.return-arrow {
    position: absolute;
    left: 2rem;
    top: 2rem;
    color: var(--neon-purple);
    font-size: 2rem;
    text-decoration: none;
    transition: 0.3s;
    z-index: 1001;
}

.return-arrow:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
    transform: translateX(-5px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    margin: 10px;
    border: 2px solid var(--neon-blue);
    background: transparent;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: 0.4s;
    animation: neonPulse 3s infinite alternate;
    cursor: pointer;
}

.btn:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-blue);
}

.btn-purple {
    border-color: var(--neon-purple);
    animation: none;
    box-shadow: 0 0 10px var(--neon-purple);
}

.btn-purple:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple);
}

/* Home Page */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #111126 0%, #070714 70%);
}

.hero-logo {
    max-width: 80%;
    width: 600px;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 20px var(--neon-purple));
    animation: fadeIn 1.5s ease-out;
}

.bio-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transition: 0.4s;
    opacity: 0.8;
}

.gallery img:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--neon-blue);
}

.record-case {
    background: repeating-linear-gradient(
        45deg,
        #111,
        #111 10px,
        #222 10px,
        #222 20px
    );
    border: 3px solid var(--neon-purple);
    border-radius: 10px;
    padding: 20px 50px;
}

/* Interior Pages */
.content-section {
    padding: 6rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    flex: 1;
}

.profile-img {
    width: 300px;
    border-radius: 50%;
    border: 4px solid var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-purple);
    margin-bottom: 2rem;
}

.stream-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 3rem auto;
    max-width: 400px;
}

.stream-links .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Discography */
.controls {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.track-item {
    display: flex;
    align-items: center;
    background: var(--bg-panel);
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid var(--neon-blue);
    text-decoration: none;
    color: var(--text-light);
    transition: 0.3s;
}

.track-item:hover {
    background: #1a1a3a;
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(181, 55, 242, 0.4);
}

.track-art {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin-right: 20px;
}

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

.track-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.camelot-key {
    padding: 5px 10px;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.lyrics-box {
    background: var(--bg-panel);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    margin-top: 2rem;
    white-space: pre-wrap;
    text-align: left;
}

@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; }
    .logo-container img { margin: 0; }
    .hero-logo { width: 90%; }
    .track-item { flex-direction: column; text-align: center; gap: 10px; }
    .track-info { text-align: center; }
}