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

:root {
    --neon-blue: #00D4FF;
    --neon-purple: #D400FF;
    --white: #FFFFFF;
    --silver-gray: #C0C0C0;
    --black: #000000;
    --dark-bg: 0 0% 5%; /* #0D0D0D */
    --glitch-shadow: 0 0 10px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: hsl(var(--dark-bg));
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

/* Background Wave Animation */
.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(212, 0, 255, 0.1) 50%, transparent 70%);
    animation: waveMove 15s infinite linear;
    z-index: -1;
    pointer-events: none;
}

@keyframes waveMove {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Header Section (10%) */
.header-section {
    height: 15vh;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-bottom: 2px solid rgba(0, 212, 255, 0.6);
    box-shadow: 0 4px 25px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    z-index: 10;
}

.header-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 30px rgba(212, 0, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(212, 0, 255, 0.3);
}

.pulse-wave {
    animation: pulse 2s infinite ease-in-out;
}

.pulse-wave-2 {
    animation-delay: 0.3s;
}

.pulse-wave-3 {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; stroke-width: 3; }
    50% { opacity: 0.5; stroke-width: 2; }
}

.header-content {
    flex: 1;
    text-align: center;
}

.main-headline {
    font-family: 'Orbitron', monospace;
    font-size: clamp(24px, 4.5vw, 36px);
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 45px rgba(0, 212, 255, 0.5);
    margin-bottom: 5px;
    line-height: 1.2;
    text-align: center;
}

.sub-headline {
    font-family: 'Orbitron', monospace;
    font-size: clamp(15px, 3vw, 21px);
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--dark-bg));
}

.glitch-text::before {
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
    color: var(--neon-purple);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
    color: var(--neon-blue);
    z-index: -2;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(12px, 9999px, 85px, 0); }
    100% { clip: rect(38px, 9999px, 31px, 0); }
}

/* Main Section (60%) */
.main-section {
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.main-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-city-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.ai-city-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.neon-blink {
    animation: neonBlink 2s infinite alternate;
}

.neon-blink-2 {
    animation: neonBlink 2.5s infinite alternate-reverse;
}

@keyframes neonBlink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.glowing-eyes {
    animation: eyeGlow 3s infinite ease-in-out;
    filter: drop-shadow(0 0 5px currentColor);
}

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

.rebel-silhouette {
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.main-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

/* Artist Spotlight Section */
.artist-spotlight-section {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    background: linear-gradient(180deg, transparent 0%, rgba(212, 0, 255, 0.05) 100%);
}

.artist-section {
    margin-bottom: 20px;
    text-align: left;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.artist-photo {
    flex-shrink: 0;
}

.artist-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(212, 0, 255, 0.6);
    animation: artistGlow 3s infinite ease-in-out;
}

@keyframes artistGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212, 0, 255, 0.6);
        border-color: var(--neon-purple);
    }
    50% { 
        box-shadow: 0 0 30px rgba(212, 0, 255, 0.9);
        border-color: var(--neon-blue);
    }
}

.artist-info {
    flex: 1;
}

.artist-name-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.artist-name-link:hover {
    transform: scale(1.05);
}

.artist-name {
    font-family: 'Orbitron', monospace;
    font-size: 30px;
    color: var(--neon-purple);
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--neon-purple);
    font-weight: 700;
    transition: all 0.3s ease;
}

.artist-name-link:hover .artist-name {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

.artist-tagline {
    font-size: 18px;
    color: var(--silver-gray);
    font-style: italic;
    margin: 0;
}

.artist-bio {
    font-size: 17px;
    line-height: 1.5;
    color: var(--white);
    font-weight: 300;
    text-align: left;
    word-wrap: break-word;
    hyphens: auto;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 27px;
    color: var(--neon-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 5px var(--neon-blue);
}

.about-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--white);
    font-weight: 300;
    word-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0;
}

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

.release-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.release-item:hover {
    transform: translateX(5px);
}

.bullet-point {
    color: var(--neon-purple);
    font-size: 12px;
    margin-top: 2px;
    text-shadow: 0 0 5px var(--neon-purple);
}

.release-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.release-title {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.release-description {
    font-size: 14px;
    color: var(--silver-gray);
    line-height: 1.4;
    font-style: italic;
}

.availability-text {
    font-size: 14px;
    color: var(--silver-gray);
    line-height: 1.5;
    margin-top: 20px;
    font-style: italic;
    opacity: 0.9;
    text-align: justify;
}

.why-neonpulse-section {
    margin-top: 15px;
}

.why-neonpulse-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 300;
}

/* Key Releases Section */
.key-releases-section {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
}

.releases-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.releases-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trilogy-cover {
    width: 320px;
    height: 320px;
    border-radius: 12px;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    animation: albumGlow 4s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.trilogy-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.8);
}

@keyframes albumGlow {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
        border-color: var(--neon-blue);
    }
    50% { 
        box-shadow: 0 0 35px rgba(212, 0, 255, 0.8);
        border-color: var(--neon-purple);
    }
}

/* Footer Section (30%) */
.footer-section {
    height: 30vh;
    min-height: 240px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, rgba(212, 0, 255, 0.05) 100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
}

.cta-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(21px, 3.75vw, 24px);
    color: var(--neon-blue);
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-blue);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: var(--white);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(212, 0, 255, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 0, 255, 0.8), 0 0 15px rgba(0, 212, 255, 0.6);
    border-color: var(--neon-blue);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.hyperfollow-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 0 10px;
}

.qr-code {
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    animation: qrPulse 3s infinite ease-in-out;
    background: white;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.qr-image {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 4px;
}

@keyframes qrPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.8); }
}

.hyperfollow-url-link {
    font-size: 12px;
    color: var(--silver-gray);
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hyperfollow-url-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.social-contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--white);
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.website {
    font-size: 14px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}

.email-link,
.phone-link {
    font-size: 14px;
    color: var(--silver-gray);
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.email-link:hover,
.phone-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        height: 25vh;
        min-height: 160px;
        padding: 20px 0 25px 0;
        margin-bottom: 25px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
        border-bottom: 2px solid rgba(0, 212, 255, 0.6);
        box-shadow: 0 4px 25px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
    }
    
    .header-section .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 15px;
        justify-content: center;
    }
    
    .logo img {
        max-width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 30px rgba(212, 0, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-headline {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 8px;
        line-height: 1.2;
        text-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 45px rgba(0, 212, 255, 0.5);
        text-align: center;
    }
    
    .tagline {
        font-size: clamp(12px, 3.5vw, 14px);
        margin-bottom: 15px;
        line-height: 1.3;
        color: var(--white);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        text-align: center;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 20px 15px 0 15px;
        margin-top: 0;
    }
    
    .main-left {
        order: 2;
    }
    
    .main-right {
        order: 1;
    }
    
    .section-title {
        font-size: clamp(22px, 5vw, 30px);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: clamp(13px, 3.5vw, 16px);
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .releases-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .trilogy-cover {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .artist-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .artist-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .artist-name {
        font-size: clamp(22px, 5vw, 30px);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .artist-bio {
        font-size: clamp(13px, 3.5vw, 16px);
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .social-contact-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 20px 15px;
    }
    
    .contact-info {
        text-align: center;
        order: 2;
    }
    
    .qr-section {
        order: 1;
    }
    
    .qr-code {
        max-width: 140px;
        margin: 0 auto;
        display: block;
    }
    
    .qr-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .website,
    .email-link,
    .phone-link {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .footer-section {
        height: auto;
        min-height: 250px;
        padding: 25px 0;
    }
}

@media (max-width: 480px) {
    .header-section {
        height: 22vh;
        min-height: 240px;
        padding: 20px 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
        border-bottom: 2px solid rgba(0, 212, 255, 0.6);
        box-shadow: 0 4px 25px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
    }
    
    .header-section .container {
        padding: 0 15px;
    }
    
    .logo img {
        max-width: 90px;
        border-radius: 8px;
        box-shadow: 0 0 12px rgba(0, 212, 255, 0.4), 0 0 25px rgba(212, 0, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-headline {
        font-size: clamp(16px, 6vw, 22px);
        margin-bottom: 10px;
        text-shadow: 0 0 12px var(--neon-blue), 0 0 25px var(--neon-blue), 0 0 35px rgba(0, 212, 255, 0.5);
        text-align: center;
    }
    
    .tagline {
        font-size: clamp(11px, 4vw, 14px);
        margin-bottom: 20px;
        color: var(--white);
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(20px, 6vw, 26px);
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: clamp(12px, 4vw, 15px);
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .main-content,
    .releases-content,
    .artist-header,
    .social-contact-section {
        padding: 0 10px;
    }
    
    .trilogy-cover {
        width: 150px;
        height: 150px;
    }
    
    .artist-image {
        width: 80px;
        height: 80px;
    }
    
    .artist-name {
        font-size: clamp(20px, 6vw, 26px);
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .artist-bio {
        font-size: clamp(12px, 4vw, 15px);
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .qr-code {
        max-width: 100px;
    }
    
    .website,
    .email-link,
    .phone-link {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .main-section {
        height: auto;
        min-height: 400px;
    }
    
    .footer-section {
        min-height: 200px;
        padding: 20px 0;
    }
}

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

.header-section,
.main-section,
.footer-section {
    animation: fadeIn 1s ease-out;
}

.main-section {
    animation-delay: 0.2s;
}

.footer-section {
    animation-delay: 0.4s;
}
