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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    font-size: 14px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #e0e0e0;
    filter: blur(0.4px);
    animation: headerFlicker 2.5s infinite;
}

@keyframes headerFlicker {
    0% { 
        filter: blur(0.4px) brightness(1);
        text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
        transform: translateX(0px);
    }
    25% { 
        filter: blur(1.2px) brightness(1.2);
        text-shadow: 0 0 12px rgba(224, 224, 224, 0.5);
        transform: translateX(-0.5px);
    }
    50% { 
        filter: blur(0.1px) brightness(0.9);
        text-shadow: 0 0 3px rgba(224, 224, 224, 0.2);
        transform: translateX(0.5px);
    }
    75% { 
        filter: blur(1.4px) brightness(1.3);
        text-shadow: 0 0 15px rgba(224, 224, 224, 0.6);
        transform: translateX(-1px);
    }
    100% { 
        filter: blur(0.4px) brightness(1);
        text-shadow: 0 0 5px rgba(224, 224, 224, 0.3);
        transform: translateX(0px);
    }
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 80px;
    width: auto;
    filter: blur(0.4px);
    animation: logoFlicker 4s infinite;
}

@keyframes logoFlicker {
    0% {
        filter: blur(0.4px) brightness(1);
        transform: translateX(0px) scale(1);
    }
    25% {
        filter: blur(1px) brightness(1.15);
        transform: translateX(-0.5px) scale(1.01);
    }
    50% {
        filter: blur(0.15px) brightness(0.9);
        transform: translateX(0.5px) scale(0.99);
    }
    75% {
        filter: blur(1.1px) brightness(1.2);
        transform: translateX(-1px) scale(1.005);
    }
    100% {
        filter: blur(0.4px) brightness(1);
        transform: translateX(0px) scale(1);
    }
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    filter: blur(0.3px);
    animation: navFlicker 3s infinite;
}

@keyframes navFlicker {
    0% { filter: blur(0.3px) brightness(1); }
    25% { filter: blur(0.8px) brightness(1.1); }
    50% { filter: blur(0.1px) brightness(0.95); }
    75% { filter: blur(0.9px) brightness(1.15); }
    100% { filter: blur(0.3px) brightness(1); }
}

.nav-link:hover {
    opacity: 0.6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), 
                url('https://floral-scene-bf20.miketconnell.workers.dev/photos/WhatsApp Image 2023-02-04 at 01.48.242222.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
}

/* Background film grain effect removed */

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-buttons-section {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    line-height: 0.9;
    color: #e0e0e0;
    text-shadow: 0 0 12px rgba(224, 224, 224, 0.4), 0 0 25px rgba(224, 224, 224, 0.3), 0 0 35px rgba(224, 224, 224, 0.2);
    filter: blur(0.6px);
    animation: intenseTitleFlicker 2s infinite;
}

@keyframes intenseTitleFlicker {
    0% {
        text-shadow: 0 0 6px rgba(224, 224, 224, 0.2), 0 0 12px rgba(224, 224, 224, 0.15), 0 0 18px rgba(224, 224, 224, 0.1);
        filter: blur(0.3px) brightness(1);
        transform: translateX(0px) translateY(0px);
    }
    25% {
        text-shadow: 0 0 10px rgba(224, 224, 224, 0.3), 0 0 20px rgba(224, 224, 224, 0.25), 0 0 30px rgba(224, 224, 224, 0.2);
        filter: blur(0.9px) brightness(1.15);
        transform: translateX(-0.75px) translateY(-0.25px);
    }
    50% {
        text-shadow: 0 0 3px rgba(224, 224, 224, 0.1), 0 0 6px rgba(224, 224, 224, 0.075), 0 0 9px rgba(224, 224, 224, 0.05);
        filter: blur(0.1px) brightness(0.925);
        transform: translateX(0.5px) translateY(0.25px);
    }
    75% {
        text-shadow: 0 0 12px rgba(224, 224, 224, 0.35), 0 0 25px rgba(224, 224, 224, 0.3), 0 0 37px rgba(224, 224, 224, 0.25);
        filter: blur(1.1px) brightness(1.2);
        transform: translateX(-1px) translateY(-0.5px);
    }
    100% {
        text-shadow: 0 0 6px rgba(224, 224, 224, 0.2), 0 0 12px rgba(224, 224, 224, 0.15), 0 0 18px rgba(224, 224, 224, 0.1);
        filter: blur(0.3px) brightness(1);
        transform: translateX(0px) translateY(0px);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 40px;
    opacity: 0.7;
}

.hero-description p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: inline-block;
}

.btn-primary {
    background: #e0e0e0;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #0a0a0a;
    color: #e0e0e0;
}

.btn-secondary {
    background: #0a0a0a;
    color: #e0e0e0;
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: #0a0a0a;
}

.hero-artwork {
    margin: 30px 0;
}

.hero-album-cover {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 1px solid #eee;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3), 0 0 22px rgba(0, 0, 0, 0.2);
    filter: blur(0.6px);
    animation: extremeCrtFlicker 2s infinite;
}

@keyframes extremeCrtFlicker {
    0% {
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3), 0 0 22px rgba(0, 0, 0, 0.2);
        filter: blur(0.6px);
        transform: translateY(0px) translateX(0px);
    }
    25% {
        text-shadow: 0 0 18px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 0, 0, 0.45), 0 0 52px rgba(0, 0, 0, 0.35);
        filter: blur(1.5px);
        transform: translateY(-0.5px) translateX(-1px);
    }
    50% {
        text-shadow: 0 0 3px rgba(0, 0, 0, 0.2), 0 0 5px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 0, 0, 0.05);
        filter: blur(0.15px);
        transform: translateY(0.5px) translateX(0.5px);
    }
    75% {
        text-shadow: 0 0 12px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 0, 0, 0.35), 0 0 37px rgba(0, 0, 0, 0.25);
        filter: blur(1.25px);
        transform: translateY(-0.5px) translateX(1px);
    }
    100% {
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.3), 0 0 22px rgba(0, 0, 0, 0.2);
        filter: blur(0.6px);
        transform: translateY(0px) translateX(0px);
    }
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Latest Release */
.latest-release {
    padding: 100px 0;
    background: #f8f8f8;
}

.release-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.artwork-large {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 1px solid #ddd;
}

.release-details h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.streaming-platforms {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #ffffff;
    background: #333333;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: #e0e0e0;
    color: #0a0a0a;
}

.platform-link i {
    font-size: 20px;
    width: 25px;
}

/* Music Section */
.music-section {
    padding: 100px 0;
}

.soundcloud-players {
    margin-bottom: 80px;
}

.player-item {
    margin-bottom: 60px;
}

.player-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

/* SoundCloud iframe styling */
.player-item iframe {
    border-radius: 8px;
    background: #0a0a0a;
}

/* SoundCloud container styling */
.soundcloud-players {
    background: #0a0a0a;
}

.music-videos {
    margin-top: 80px;
}

.music-videos h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-item {
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.video-item p {
    opacity: 0.7;
    margin: 0;
}

/* Live Section */
.live-section {
    padding: 100px 0;
    background: #0a0a0a;
    text-align: center;
}

.live-announcement {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.live-cta {
    margin-top: 40px;
}

/* Featured News */
.featured-news {
    margin-bottom: 60px;
}

.featured-news-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.featured-news-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.featured-artwork {
    text-align: center;
}

.featured-artwork .featured-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.featured-details {
    text-align: left;
}

.featured-details .news-date {
    background: #643b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-details h3 {
    font-size: 2.2em;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.featured-details p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.featured-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.featured-actions .btn-primary,
.featured-actions .btn-secondary {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.featured-actions .btn-primary {
    background: #643b35;
    color: white;
}

.featured-actions .btn-primary:hover {
    background: #2c1810;
}

.featured-actions .btn-secondary {
    background: transparent;
    color: #643b35;
    border: 2px solid #643b35;
}

.featured-actions .btn-secondary:hover {
    background: #643b35;
    color: white;
}

.featured-details .streaming-platforms {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-details .platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.featured-details .platform-link:hover {
    background: #e0e0e0;
    color: #0a0a0a;
    border-color: #e0e0e0;
}

@media (max-width: 768px) {
    .featured-news-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .featured-details {
        text-align: center;
    }
    
    .featured-actions {
        justify-content: center;
    }
    
    .featured-details .streaming-platforms {
        justify-content: center;
    }
}

/* News Section */
.news-section {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.news-item {
    padding: 40px;
    border: 1px solid #333;
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: #666;
}

.news-date {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 15px;
}

.news-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.read-more:hover {
    opacity: 0.6;
}

/* Discography Section */
.discography-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.album-item {
    text-align: center;
    transition: all 0.3s ease;
}

.album-cover {
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    background: #0a0a0a;
}

.album-cover img {
    width: 280px;
    height: 305px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.album-item:hover .album-hover-info {
    opacity: 1;
}

.album-item:hover .album-cover img {
    transform: scale(1.05);
}

.album-hover-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
    text-align: center;
}

.album-year {
    font-size: 11px;
    margin-bottom: 10px;
    opacity: 0.8;
    text-align: center;
}

.release-date {
    font-size: 10px;
    margin-bottom: 15px;
    opacity: 0.7;
    text-align: center;
}

.tracklist-hover {
    margin-bottom: 15px;
}

.tracklist-hover p {
    font-size: 10px;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.tracklist-hover li {
    counter-increment: track-counter;
    font-size: 9px;
    padding: 2px 0;
    position: relative;
    padding-left: 20px;
}

.tracklist-hover li:before {
    content: counter(track-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-weight: 600;
    opacity: 0.6;
}

.album-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.album-links a {
    padding: 6px 12px;
    border: 2px solid #00a8e6;
    color: #ffffff;
    background: #00a8e6;
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.album-links a:hover {
    background: rgba(0, 168, 230, 0.8);
    color: white;
}

/* Album Details Modal */
.album-details-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.album-details-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border: none;
    width: 80%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-album-details {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close-album-details:hover {
    opacity: 0.6;
}

.album-details-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.album-details-cover img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.album-details-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.album-details-year {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.album-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.album-links a {
    padding: 10px 20px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.album-links a:hover {
    background: #000;
    color: #fff;
}

.tracklist {
    margin-top: 30px;
}

.tracklist h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

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

.tracklist li {
    counter-increment: track-counter;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    position: relative;
    padding-left: 40px;
    transition: background 0.2s ease;
}

.tracklist li:hover {
    background: #f8f8f8;
    padding-left: 45px;
}

.tracklist li:before {
    content: counter(track-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-weight: 600;
    opacity: 0.6;
    width: 30px;
}

/* Lyrics Modal */
.lyrics-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.lyrics-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border: none;
    width: 80%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-lyrics {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close-lyrics:hover {
    opacity: 0.6;
}

#lyrics-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

#lyrics-text {
    line-height: 2;
    font-size: 16px;
    white-space: pre-line;
}

/* Brief About Section */
.brief-about {
    padding: 60px 0;
    background: #0a0a0a;
    text-align: center;
}

.brief-content p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin: 0;
    font-style: italic;
}

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

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

.band-members {
    margin-top: 40px;
}

.band-members h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    letter-spacing: 1px;
}

.band-photo {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

/* Photos Section */
.photos-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-header p {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 10px;
    font-style: italic;
}

/* Photo Categories */
.photo-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #333;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: blur(0.3px);
    animation: categoryFlicker 3s infinite;
}

@keyframes categoryFlicker {
    0% { filter: blur(0.3px) brightness(1); }
    25% { filter: blur(0.8px) brightness(1.1); }
    50% { filter: blur(0.1px) brightness(0.95); }
    75% { filter: blur(0.9px) brightness(1.15); }
    100% { filter: blur(0.3px) brightness(1); }
}

.category-btn:hover,
.category-btn.active {
    background: #e0e0e0;
    color: #0a0a0a;
    border-color: #e0e0e0;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border: 2px solid #333;
    background: #0a0a0a;
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 8px;
}

.photo-item:hover {
    transform: scale(1.03);
    border-color: #666;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.photo-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: blur(0.3px);
    animation: photoFlicker 3s infinite;
}

@keyframes photoFlicker {
    0% { 
        filter: blur(0.3px) brightness(1);
        transform: scale(1);
    }
    25% { 
        filter: blur(0.8px) brightness(1.1);
        transform: scale(1.005);
    }
    50% { 
        filter: blur(0.1px) brightness(0.95);
        transform: scale(0.998);
    }
    75% { 
        filter: blur(0.9px) brightness(1.15);
        transform: scale(1.002);
    }
    100% { 
        filter: blur(0.3px) brightness(1);
        transform: scale(1);
    }
}

.photo-item:hover .photo-image {
    transform: scale(1.1);
}

/* Photo Overlay */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-info {
    align-self: flex-end;
    text-align: left;
}

.photo-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.photo-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    opacity: 0.8;
}

.photo-actions {
    align-self: flex-start;
    text-align: right;
}

.view-btn {
    background: rgba(224, 224, 224, 0.2);
    border: 2px solid #e0e0e0;
    color: #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: auto;
}

.view-btn:hover {
    background: #e0e0e0;
    color: #0a0a0a;
    transform: scale(1.1);
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.photo-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 20px 20px;
}

.close-photo-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #e0e0e0;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: all 0.3s ease;
    filter: blur(0.3px);
    animation: modalFlicker 2s infinite;
}

@keyframes modalFlicker {
    0% { filter: blur(0.3px) brightness(1); }
    25% { filter: blur(0.8px) brightness(1.2); }
    50% { filter: blur(0.1px) brightness(0.9); }
    75% { filter: blur(0.9px) brightness(1.3); }
    100% { filter: blur(0.3px) brightness(1); }
}

.close-photo-modal:hover {
    opacity: 0.6;
    transform: scale(1.1);
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(224, 224, 224, 0.1);
    border: 2px solid #e0e0e0;
    color: #e0e0e0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 3001;
}

.photo-nav:hover {
    background: #e0e0e0;
    color: #0a0a0a;
    transform: translateY(-50%) scale(1.1);
}

.photo-nav.prev {
    left: 30px;
}

.photo-nav.next {
    right: 30px;
}

.modal-photo-image {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    border: 3px solid #333;
    border-radius: 8px;
    filter: blur(0.4px);
    animation: modalPhotoFlicker 2.5s infinite;
}

@keyframes modalPhotoFlicker {
    0% { 
        filter: blur(0.4px) brightness(1);
        box-shadow: 0 0 20px rgba(224, 224, 224, 0.2);
    }
    25% { 
        filter: blur(1px) brightness(1.1);
        box-shadow: 0 0 30px rgba(224, 224, 224, 0.3);
    }
    50% { 
        filter: blur(0.1px) brightness(0.95);
        box-shadow: 0 0 15px rgba(224, 224, 224, 0.15);
    }
    75% { 
        filter: blur(1.2px) brightness(1.15);
        box-shadow: 0 0 35px rgba(224, 224, 224, 0.35);
    }
    100% { 
        filter: blur(0.4px) brightness(1);
        box-shadow: 0 0 20px rgba(224, 224, 224, 0.2);
    }
}

.photo-modal-info {
    text-align: center;
    margin-top: 30px;
    max-width: 600px;
}

.photo-modal-info h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photo-modal-info p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    opacity: 0.8;
}

.photo-counter {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 1px;
}

/* Photo filtering */
.photo-item.hidden {
    display: none;
}

@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .photo-image {
        height: 220px;
    }
    
    .photo-categories {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .photo-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .photo-nav.prev {
        left: 20px;
    }
    
    .photo-nav.next {
        right: 20px;
    }
    
    .close-photo-modal {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .modal-photo-image {
        max-width: 95%;
        max-height: 60vh;
    }
    
    .photo-modal-content {
        padding: 50px 15px 15px;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-image {
        height: 200px;
    }
    
    .photo-categories {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .category-btn {
        width: 200px;
        text-align: center;
    }
    
    .photo-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .photo-nav.prev {
        left: 15px;
    }
    
    .photo-nav.next {
        right: 15px;
    }
    
    .modal-photo-image {
        max-width: 98%;
        max-height: 55vh;
    }
    
    .photo-modal-info h3 {
        font-size: 1.2rem;
    }
    
    .photo-modal-info p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.6;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #e0e0e0;
    color: #0a0a0a;
}

/* Lyrics Styling */
.lyrics-section-title {
    color: #643b35;
    font-size: 1.1em;
    font-weight: 600;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lyrics-track-title {
    color: #2c1810;
    font-size: 1.3em;
    font-weight: 700;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #643b35;
    padding-bottom: 10px;
}

.lyrics-paragraph {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c1810;
}

.lyrics-fallback {
    text-align: center;
    padding: 40px 20px;
}

.lyrics-instructions {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9em;
    color: #666;
}

.lyrics-format-guide {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.lyrics-format-guide h4 {
    color: #643b35;
    margin-bottom: 15px;
}

.lyrics-format-guide pre {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    line-height: 1.4;
    color: #333;
}

/* News Styling */
.news-article-title {
    color: #e0e0e0;
    font-size: 2.5em;
    font-weight: 700;
    margin: 40px 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}

.news-paragraph {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-size: 16px;
    text-align: justify;
}

.news-fallback {
    text-align: center;
    padding: 40px 20px;
    color: #e0e0e0;
}

.news-instructions {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9em;
    color: #999;
    border: 1px solid #333;
}

.news-instructions h4 {
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid #333;
    background: #0a0a0a;
}

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

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-text p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .release-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

    .streaming-platforms {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .news-grid,
    .store-content {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    .featured-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}

/* Page Header for News Pages */
.page-header {
    padding: 120px 0 80px;
    background: #0a0a0a;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.article-date,
.article-category {
    opacity: 0.6;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-image,
.article-video {
    margin-bottom: 40px;
    text-align: center;
}

.featured-image {
    width: 500px;
    height: 500px;
    max-width: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}

.article-text {
    font-size: 16px;
    line-height: 1.8;
}

.article-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #333;
}

.article-text h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-news .btn-outline {
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.back-to-news .btn-outline:hover {
    background: #e0e0e0;
    color: #0a0a0a;
}

.share-article h4 {
    font-size: 14px;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #e0e0e0;
    color: #0a0a0a;
}

/* Lyrics Page Styles */
.lyrics-text {
    font-size: 16px;
    line-height: 1.8;
}

.lyrics-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #1a1a1a;
    border-left: 4px solid #e0e0e0;
}

.lyrics-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    letter-spacing: 2px;
}

.lyrics-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .article-footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .lyrics-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .lyrics-section h3 {
        font-size: 1rem;
    }

    .lyrics-section p {
        font-size: 14px;
    }
}