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

:root {
    --primary-color: #0a0e14;
    --accent-color: #5fb3b3;
    --text-color: #c7ccd1;
    --text-dim: #7d8690;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0e14 0%, #1a2332 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.2s ease-in;
}

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

header {
    margin-bottom: 50px;
}

.main-nav {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--accent-color);
    border-color: rgba(95, 179, 179, 0.3);
    background: rgba(95, 179, 179, 0.05);
}

.nav-link.active {
    color: var(--accent-color);
    border-color: rgba(95, 179, 179, 0.5);
    background: rgba(95, 179, 179, 0.1);
}

.band-name {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(95, 179, 179, 0.3);
}

.band-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-dim);
    letter-spacing: 0.1em;
    font-weight: 300;
    min-height: 1.5em;
    text-align: center;
    margin-left: -0.25em;
}

.band-subtitle.main-phrase-color {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(95, 179, 179, 0.4),
                 0 0 40px rgba(95, 179, 179, 0.2);
}

/* Flash effect for alternative phrases */
.band-subtitle.flash-phrase {
    animation: flashEffect 0.5s ease-out;
}

@keyframes flashEffect {
    0% {
        opacity: 0;
        transform: scale(0.95);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
    30% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 30px rgba(95, 179, 179, 0.4),
                     0 0 60px rgba(95, 179, 179, 0.2),
                     0 0 90px rgba(95, 179, 179, 0.1);
    }
    100% {
        opacity: 0.85;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(95, 179, 179, 0.15);
    }
}

/* Gentle fade-in for first phrase after main */
.band-subtitle.flash-phrase-fade-in {
    animation: flashEffectFadeIn 0.5s ease-out;
}

@keyframes flashEffectFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
    40% {
        opacity: 0.6;
        transform: scale(0.98);
        text-shadow: 0 0 15px rgba(95, 179, 179, 0.2),
                     0 0 30px rgba(95, 179, 179, 0.1);
    }
    100% {
        opacity: 0.75;
        transform: scale(1);
        text-shadow: 0 0 8px rgba(95, 179, 179, 0.12);
    }
}

/* Gentler flash for second and eighth/ninth phrases */
.band-subtitle.flash-phrase-gentle {
    animation: flashEffectGentle 0.5s ease-out forwards;
}

@keyframes flashEffectGentle {
    0% {
        opacity: 0;
        transform: scale(0.95);
        color: var(--text-dim);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
    30% {
        opacity: 0.85;
        transform: scale(1);
        color: var(--text-dim);
        text-shadow: 0 0 18px rgba(95, 179, 179, 0.25),
                     0 0 35px rgba(95, 179, 179, 0.12);
    }
    100% {
        opacity: 0.7;
        transform: scale(0.98);
        color: var(--text-dim);
        text-shadow: 0 0 8px rgba(95, 179, 179, 0.1);
    }
}

/* Main phrase animation with accent color */
.band-subtitle.main-phrase-gentle {
    animation: flashEffectMainPhrase 0.5s ease-out forwards;
}

@keyframes flashEffectMainPhrase {
    0% {
        opacity: 0;
        transform: scale(0.95);
        color: var(--accent-color);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
    30% {
        opacity: 0.95;
        transform: scale(1);
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(95, 179, 179, 0.4),
                     0 0 40px rgba(95, 179, 179, 0.2);
    }
    100% {
        opacity: 0.85;
        transform: scale(0.98);
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(95, 179, 179, 0.4),
                     0 0 40px rgba(95, 179, 179, 0.2);
    }
}

/* Fade out for tenth phrase */
.band-subtitle.flash-phrase-fade-out {
    animation: flashEffectFadeOut 0.6s ease-in-out forwards;
}

@keyframes flashEffectFadeOut {
    0% {
        opacity: 0;
        transform: scale(0.95);
        color: var(--text-dim);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
    25% {
        opacity: 0.6;
        transform: scale(0.98);
        color: var(--text-dim);
        text-shadow: 0 0 12px rgba(95, 179, 179, 0.2),
                     0 0 25px rgba(95, 179, 179, 0.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.92);
        color: var(--text-dim);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
}

/* Fade out for main phrase */
.band-subtitle.fade-out-main {
    animation: fadeOutMain 0.8s ease-out forwards;
}

@keyframes fadeOutMain {
    0% {
        opacity: 1;
        transform: scale(1);
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(95, 179, 179, 0.4),
                     0 0 40px rgba(95, 179, 179, 0.2);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
        color: var(--text-dim);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
}

/* Main phrase special effect */
.band-subtitle.main-phrase-show {
    animation: mainPhraseGlow 0.8s ease-out forwards, heartbeat 1.2s ease-in-out 0.8s infinite;
    color: var(--accent-color);
}

@keyframes mainPhraseGlow {
    0% {
        opacity: 0;
        transform: scale(0.9);
        color: var(--text-dim);
        text-shadow: 0 0 0 rgba(95, 179, 179, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        color: var(--accent-color);
        text-shadow: 0 0 40px rgba(95, 179, 179, 0.6),
                     0 0 80px rgba(95, 179, 179, 0.4),
                     0 0 120px rgba(95, 179, 179, 0.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(95, 179, 179, 0.4),
                     0 0 40px rgba(95, 179, 179, 0.2);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(95, 179, 179, 0.4),
                     0 0 40px rgba(95, 179, 179, 0.2);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 30px rgba(95, 179, 179, 0.5),
                     0 0 60px rgba(95, 179, 179, 0.3),
                     0 0 90px rgba(95, 179, 179, 0.15);
    }
}

.streaming-icons-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    padding: 10px 30px;
    max-width: 600px;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.6) 0%, rgba(10, 14, 20, 0.8) 50%, rgba(26, 35, 50, 0.6) 100%);
    border: 1px solid rgba(95, 179, 179, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(95, 179, 179, 0.08);
    backdrop-filter: blur(10px);
}

.streaming-bar-label {
    color: var(--text-color);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
    margin-right: 5px;
}

.streaming-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.streaming-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.streaming-icon:hover {
    transform: translateY(-3px) scale(1.08);
    background: rgba(0, 0, 0, 0.5);
}

.streaming-icon:hover i {
    transform: scale(1.15);
}

.streaming-icon.apple-music i {
    color: #FC3C44;
}

.streaming-icon.apple-music:hover {
    border-color: rgba(252, 60, 68, 0.5);
    box-shadow: 0 6px 20px rgba(252, 60, 68, 0.3),
                0 0 15px rgba(252, 60, 68, 0.2);
}

.streaming-icon.spotify i {
    color: #1DB954;
}

.streaming-icon.spotify:hover {
    border-color: rgba(29, 185, 84, 0.5);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3),
                0 0 15px rgba(29, 185, 84, 0.2);
}

.streaming-icon.tidal i {
    color: #00FFFF;
}

.streaming-icon.tidal:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.3),
                0 0 15px rgba(0, 255, 255, 0.2);
}

.album-cover-wrapper {
    margin: 0 auto 40px;
    max-width: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(95, 179, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.album-cover-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(95, 179, 179, 0.2);
}

.album-cover {
    width: 100%;
    height: auto;
    display: block;
}

.album-info {
    margin-bottom: 40px;
}

.album-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.status {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--accent-color);
    letter-spacing: 0.15em;
    font-weight: 300;
    text-transform: uppercase;
}

.announcement {
    margin-top: 20px;
    display: inline-block;
}

.announcement-text {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: var(--text-dim);
    letter-spacing: 0.05em;
    font-weight: 300;
    font-style: italic;
}

.audio-section {
    margin: 50px auto;
    max-width: 500px;
}

.audio-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.audio-player {
    width: 100%;
    outline: none;
    border-radius: 50px;
    background: rgba(95, 179, 179, 0.1);
    padding: 5px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.audio-player::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(10, 14, 20, 0.9));
    border-radius: 50px;
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-mute-button {
    background-color: var(--accent-color);
    border-radius: 50%;
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--text-color);
}

.audio-player::-webkit-media-controls-timeline {
    background: rgba(125, 134, 144, 0.3);
    border-radius: 25px;
}

footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(95, 179, 179, 0.2);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.streaming-links {
    margin: 50px auto;
    max-width: 500px;
}

.streaming-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.streaming-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(95, 179, 179, 0.1);
    border: 1px solid rgba(95, 179, 179, 0.3);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.streaming-button:hover {
    background: rgba(95, 179, 179, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 179, 179, 0.3);
}

.streaming-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.streaming-button:hover i {
    transform: scale(1.1);
}

/* Brand-specific colors */
.streaming-button.apple-music i {
    color: #FA243C;
}

.streaming-button.spotify i {
    color: #1DB954;
}

.streaming-button.tidal i {
    color: #00FFFF;
}

/* About Page Styles */
.about-main {
    max-width: 1000px;
    margin: 0 auto;
}

.banner-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(95, 179, 179, 0.1);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.sidebar-photos {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 20px;
}

.sidebar-photo-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(95, 179, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sidebar-photo-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(95, 179, 179, 0.15);
}

.sidebar-photo {
    width: 100%;
    height: auto;
    display: block;
}

.bio-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: justify;
}

.bio-text p {
    margin-bottom: 1.5em;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.callout-quote {
    margin: 60px auto;
    padding: 40px 60px;
    text-align: center;
    border-left: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    background: rgba(95, 179, 179, 0.05);
    backdrop-filter: blur(10px);
}

.callout-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.03em;
    font-style: italic;
    text-shadow: 0 0 20px rgba(95, 179, 179, 0.2);
}

.bottom-photos {
    margin-top: 50px;
    margin-bottom: 40px;
}

.bottom-photo-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(95, 179, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-photo-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(95, 179, 179, 0.15);
}

.bottom-photo {
    width: 100%;
    height: auto;
    display: block;
}

.studio-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(95, 179, 179, 0.2);
}

.studio-image-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(95, 179, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.studio-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(95, 179, 179, 0.2);
}

.studio-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease-in;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(95, 179, 179, 0.3);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-color);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(95, 179, 179, 0.5);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    header {
        margin-bottom: 30px;
    }

    .album-cover-wrapper {
        margin-bottom: 30px;
    }

    .audio-section {
        margin: 40px auto;
    }

    .streaming-links {
        margin: 40px auto;
    }

    .streaming-buttons {
        gap: 15px;
    }

    .streaming-button {
        font-size: 0.85rem;
        padding: 12px 24px;
    }

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

    .sidebar-photos {
        position: static;
        flex-direction: row;
        gap: 20px;
        max-width: 100%;
    }

    .sidebar-photo-wrapper {
        flex: 1;
    }

    .bio-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .banner-wrapper {
        margin-bottom: 40px;
    }

    .bottom-photo-wrapper {
        max-width: 100%;
    }

    .main-nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    footer {
        margin-top: 60px;
    }
}
