/* Artist Page Styles */

:root {
    --alien-green: #39ff14;
    --alien-dark-green: #0a5f04;
    --space-black: #000;
    --space-dark: #0a0a0a;
    --space-gray: #121212;
}

/* Navigation */
.artist-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    z-index: 100;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}

.back-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link svg {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: var(--alien-green);
}

.back-link:hover svg {
    transform: translateX(-3px);
}

/* Artist Header */
.artist-header {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    overflow: hidden;
}

.artist-image-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.overlay-gradient {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(10, 95, 4, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 0;
}

.floating-ufo {
    position: absolute;
    top: 15%;
    right: 10%;
    z-index: 2;
    animation: float-ufo 10s ease-in-out infinite;
    opacity: 0.8;
}

.floating-ufo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--alien-green));
}

@keyframes float-ufo {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(10px) rotate(8deg);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

.artist-header-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.artist-header h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
    color: var(--alien-green);
    animation: pulse 3s infinite alternate;
}

.artist-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px var(--alien-green), 0 0 20px var(--alien-green);
    }
    100% {
        text-shadow: 0 0 15px var(--alien-green), 0 0 30px var(--alien-green), 0 0 40px var(--alien-green);
    }
}

/* Artist Content */
.artist-content {
    background-color: var(--space-gray);
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.artist-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/stars.png');
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    color: var(--alien-green);
    text-shadow: 0 0 10px var(--alien-green);
}

.alien-divider {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alien-icon {
    font-size: 1.5rem;
    display: inline-block;
    margin: 0 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.alien-divider::before,
.alien-divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(to right, transparent, var(--alien-green), transparent);
    flex: 1;
    max-width: 100px;
}

/* Artist Bio */
.artist-bio-container {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.artist-bio-image {
    flex: 0 0 300px;
    margin-right: 2rem;
}

.artist-bio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
    transition: all 0.5s ease;
}

.artist-bio-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(57, 255, 20, 0.5);
}

.artist-bio {
    flex: 1;
}

.artist-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

/* Artist Gallery */
.artist-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(57, 255, 20, 0.4);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Album Showcase */
.album-showcase {
    display: flex;
    margin-bottom: 4rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(57, 255, 20, 0.2);
    position: relative;
    z-index: 1;
}

.album-artwork {
    flex: 0 0 350px;
    position: relative;
}

.album-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.album-artwork:hover img {
    transform: scale(1.05);
}

.album-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.album-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: #fff;
}

.album-date {
    color: #999;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.album-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ddd;
}

/* Countdown */
.countdown-container {
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    align-items: center;
}

.countdown .days {
    font-size: 3rem;
    font-weight: 800;
    color: var(--alien-green);
    margin-right: 1rem;
    text-shadow: 0 0 10px var(--alien-green);
    animation: pulse-text 2s infinite alternate;
}

.countdown-text {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #fff;
}

.album-out-now {
    display: inline-block;
    background-color: var(--alien-green);
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    animation: pulse-bg 2s infinite alternate;
}

@keyframes pulse-text {
    0% {
        color: var(--alien-green);
        text-shadow: 0 0 5px var(--alien-green);
    }
    100% {
        color: #fff;
        text-shadow: 0 0 15px var(--alien-green), 0 0 25px var(--alien-green);
    }
}

@keyframes pulse-bg {
    0% {
        background-color: var(--alien-green);
        box-shadow: 0 0 5px var(--alien-green);
    }
    100% {
        background-color: #7aff5d;
        box-shadow: 0 0 15px var(--alien-green);
    }
}

/* Streaming Links */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stream-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: rgba(10, 95, 4, 0.5);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--alien-green);
    transition: all 0.3s ease;
}

.stream-button:hover {
    background-color: var(--alien-green);
    color: #000;
    box-shadow: 0 0 15px var(--alien-green);
    transform: translateY(-3px);
}

/* Tracklist */
.tracklist {
    position: relative;
    z-index: 1;
}

.track {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.track:hover {
    background-color: rgba(57, 255, 20, 0.1);
    border-bottom-color: rgba(57, 255, 20, 0.3);
}

.track-number {
    flex: 0 0 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--alien-green);
    text-align: center;
}

.track-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.track-duration {
    color: #999;
    font-size: 0.9rem;
    margin-right: 2rem;
}

.track-preview {
    flex: 0 0 60px;
    text-align: center;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(57, 255, 20, 0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--alien-green);
    color: #000;
    box-shadow: 0 0 10px var(--alien-green);
}

.play-button[data-state="playing"] {
    background-color: var(--alien-green);
    color: #000;
    box-shadow: 0 0 10px var(--alien-green);
}

/* Play button error state */
.play-button.error {
    background-color: #ff3939;
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-3px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(3px, 0, 0);
    }
}

/* Footer */
footer {
    padding: 2rem;
    background-color: var(--space-dark);
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--alien-dark-green);
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--alien-green);
    text-shadow: 0 0 10px var(--alien-green);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.footer-links a:hover {
    color: var(--alien-green);
    text-shadow: 0 0 5px var(--alien-green);
}

/* Media Queries */
@media (max-width: 900px) {
    .artist-bio-container {
        flex-direction: column;
    }
    
    .artist-bio-image {
        flex: none;
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 300px;
    }
    
    .album-showcase {
        flex-direction: column;
    }
    
    .album-artwork {
        flex: none;
        height: 300px;
    }
    
    .artist-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .artist-header h1 {
        font-size: 3.5rem;
    }
    
    .artist-tagline {
        font-size: 1.2rem;
    }
    
    .floating-ufo {
        top: 10%;
        right: 5%;
    }
    
    .floating-ufo img {
        width: 80px;
    }
    
    .album-info {
        padding: 2rem;
    }
    
    .album-info h3 {
        font-size: 1.8rem;
    }
    
    .countdown .days {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .artist-gallery {
        grid-template-columns: 1fr;
    }
    
    .track-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .track-title {
        margin-bottom: 0.3rem;
    }
    
    .track-duration {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .artist-header h1 {
        font-size: 2.5rem;
    }
    
    .artist-tagline {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .album-info h3 {
        font-size: 1.5rem;
    }
} 