:root {
    --primary: #00ffff;
    --secondary: #ff00ff;
    --accent: #00ff88;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --gray: #8a8a9f;
    --glow: rgba(0, 255, 255, 0.5);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Digital Grid Background */
.digital-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--glow);
}

.logo-container {
    padding: 2rem;
}

.logo {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-shadow:
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 30px var(--primary),
        0 0 40px rgba(0, 255, 255, 0.5);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        text-shadow:
            0 0 10px var(--primary),
            0 0 20px var(--primary),
            0 0 30px var(--primary),
            0 0 40px rgba(0, 255, 255, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px var(--primary),
            0 0 30px var(--primary),
            0 0 40px var(--primary),
            0 0 60px rgba(0, 255, 255, 0.8);
    }
}

.glitch {
    position: relative;
}

.glitch:hover::before,
.glitch:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch:hover::before {
    animation: glitch-1 0.3s infinite;
    color: var(--secondary);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s infinite;
    color: var(--accent);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(-2px, 2px);
    }
    66% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(2px, -2px);
    }
    66% {
        transform: translate(-2px, 2px);
    }
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gray);
    margin-top: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

/* About Section */
.about {
    margin-bottom: 6rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Releases Section */
.releases {
    margin-bottom: 6rem;
}

.album {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.album:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.album-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.album-header:hover {
    background: rgba(0, 255, 255, 0.05);
}

.album-cover {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.album-header:hover .album-cover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.album-info {
    flex: 1;
}

.album-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.album-type {
    color: var(--gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.expand-btn {
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px var(--glow);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.album.expanded .arrow {
    transform: rotate(180deg);
}

.album-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 2rem;
}

.album.expanded .album-details {
    max-height: 3000px;
    padding: 2rem;
}

.tracklist {
    margin-bottom: 2rem;
}

.tracklist h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tracklist ol {
    list-style: none;
    counter-reset: track-counter;
}

.tracklist li {
    counter-increment: track-counter;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    position: relative;
    padding-left: 3rem;
}

.tracklist li::before {
    content: counter(track-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.track-info {
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.streaming-links h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.platform-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.platform-icon {
    font-size: 1.5rem;
}

/* Social Section */
.social {
    margin-bottom: 4rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--darker);
    border-top: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--glow);
}

footer p {
    color: var(--gray);
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    .album-header {
        padding: 1.5rem;
        flex-wrap: wrap;
    }

    .album-cover {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .album-info {
        width: 100%;
        text-align: center;
    }

    .album-title {
        font-size: 1.5rem;
    }

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

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

    .tracklist li {
        font-size: 1rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .album-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .expand-btn {
        align-self: center;
    }
}
