:root {
    --primary-color: #b026ff;
    /* Neon Purple */
    --secondary-color: #00f0ff;
    /* Cyan */
    --bg-dark: #050510;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('assets/images/artistHeadshot.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.3), rgba(5, 5, 16, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    letter-spacing: 4px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #8a1ccf);
    color: white;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* Featured Single */
.featured-single {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 50%, rgba(176, 38, 255, 0.08), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.08), transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.single-card {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.single-art {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.3);
}

.single-art img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.single-art:hover img {
    transform: scale(1.05);
}

.single-info {
    flex: 1.2;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.single-info h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dedication {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.description {
    margin-bottom: 30px;
    color: #ddd;
    font-weight: 300;
}

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

.store-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.spotify:hover {
    border-color: #1DB954;
    color: #1DB954;
}

.youtube:hover {
    border-color: #FF0000;
    color: #FF0000;
}

.amazon:hover {
    border-color: #00A8E1;
    color: #00A8E1;
}

.soundcloud:hover {
    border-color: #FF5500;
    color: #FF5500;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::before {
    top: -10px;
    left: -10px;
}

.about-image img {
    border-radius: 5px;
    filter: grayscale(20%) contrast(110%);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-weight: 300;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item .value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Discography */
.discography {
    padding: 100px 0;
    background: linear-gradient(to top, rgba(5, 5, 16, 1), rgba(176, 38, 255, 0.05));
}

.track-list {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

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

.track-info {
    display: flex;
    flex-direction: column;
}

.track-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.play-btn {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
}

.play-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
}

.catalog-link {
    text-align: center;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: #02020a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.brand h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.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 5s infinite linear alternate-reverse;
}

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

@keyframes glitch-anim {
    0% {
        clip: rect(13px, 9999px, 88px, 0);
    }

    5% {
        clip: rect(76px, 9999px, 93px, 0);
    }

    10% {
        clip: rect(42px, 9999px, 18px, 0);
    }

    15% {
        clip: rect(93px, 9999px, 5px, 0);
    }

    20% {
        clip: rect(2px, 9999px, 64px, 0);
    }

    100% {
        clip: rect(56px, 9999px, 47px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    5% {
        clip: rect(52px, 9999px, 74px, 0);
    }

    10% {
        clip: rect(79px, 9999px, 85px, 0);
    }

    15% {
        clip: rect(15px, 9999px, 2px, 0);
    }

    20% {
        clip: rect(2px, 9999px, 34px, 0);
    }

    100% {
        clip: rect(32px, 9999px, 98px, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation needed if requested, simple hide for now */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .single-card {
        flex-direction: column;
        text-align: center;
    }

    .streaming-links {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}