/* 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.12px) brightness(1);
        text-shadow: 0 0 1.5px rgba(224, 224, 224, 0.09);
        transform: translateX(0px);
    }
    25% { 
        filter: blur(0.36px) brightness(1.06);
        text-shadow: 0 0 3.6px rgba(224, 224, 224, 0.15);
        transform: translateX(-0.15px);
    }
    50% { 
        filter: blur(0.03px) brightness(0.97);
        text-shadow: 0 0 0.9px rgba(224, 224, 224, 0.06);
        transform: translateX(0.15px);
    }
    75% { 
        filter: blur(0.42px) brightness(1.09);
        text-shadow: 0 0 4.5px rgba(224, 224, 224, 0.18);
        transform: translateX(-0.3px);
    }
    100% { 
        filter: blur(0.12px) brightness(1);
        text-shadow: 0 0 1.5px rgba(224, 224, 224, 0.09);
        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.12px) brightness(1);
        transform: translateX(0px) scale(1);
    }
    25% {
        filter: blur(0.3px) brightness(1.045);
        transform: translateX(-0.15px) scale(1.003);
    }
    50% {
        filter: blur(0.045px) brightness(0.97);
        transform: translateX(0.15px) scale(0.997);
    }
    75% {
        filter: blur(0.33px) brightness(1.06);
        transform: translateX(-0.3px) scale(1.0015);
    }
    100% {
        filter: blur(0.12px) 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.09px) brightness(1); }
    25% { filter: blur(0.24px) brightness(1.03); }
    50% { filter: blur(0.03px) brightness(0.985); }
    75% { filter: blur(0.27px) brightness(1.045); }
    100% { filter: blur(0.09px) brightness(1); }
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    gap: 6px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 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%;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        order: -1;
    }
}

.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 1.8px rgba(224, 224, 224, 0.06), 0 0 3.6px rgba(224, 224, 224, 0.045), 0 0 5.4px rgba(224, 224, 224, 0.03);
        filter: blur(0.09px) brightness(1);
        transform: translateX(0px) translateY(0px);
    }
    25% {
        text-shadow: 0 0 3px rgba(224, 224, 224, 0.09), 0 0 6px rgba(224, 224, 224, 0.075), 0 0 9px rgba(224, 224, 224, 0.06);
        filter: blur(0.27px) brightness(1.045);
        transform: translateX(-0.225px) translateY(-0.075px);
    }
    50% {
        text-shadow: 0 0 0.9px rgba(224, 224, 224, 0.03), 0 0 1.8px rgba(224, 224, 224, 0.0225), 0 0 2.7px rgba(224, 224, 224, 0.015);
        filter: blur(0.03px) brightness(0.9775);
        transform: translateX(0.15px) translateY(0.075px);
    }
    75% {
        text-shadow: 0 0 3.6px rgba(224, 224, 224, 0.105), 0 0 7.5px rgba(224, 224, 224, 0.09), 0 0 11.1px rgba(224, 224, 224, 0.075);
        filter: blur(0.33px) brightness(1.06);
        transform: translateX(-0.3px) translateY(-0.15px);
    }
    100% {
        text-shadow: 0 0 1.8px rgba(224, 224, 224, 0.06), 0 0 3.6px rgba(224, 224, 224, 0.045), 0 0 5.4px rgba(224, 224, 224, 0.03);
        filter: blur(0.09px) 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 2.4px rgba(0, 0, 0, 0.12), 0 0 4.5px rgba(0, 0, 0, 0.09), 0 0 6.6px rgba(0, 0, 0, 0.06);
        filter: blur(0.18px);
        transform: translateY(0px) translateX(0px);
    }
    25% {
        text-shadow: 0 0 5.4px rgba(0, 0, 0, 0.15), 0 0 10.5px rgba(0, 0, 0, 0.135), 0 0 15.6px rgba(0, 0, 0, 0.105);
        filter: blur(0.45px);
        transform: translateY(-0.15px) translateX(-0.3px);
    }
    50% {
        text-shadow: 0 0 0.9px rgba(0, 0, 0, 0.06), 0 0 1.5px rgba(0, 0, 0, 0.03), 0 0 2.4px rgba(0, 0, 0, 0.015);
        filter: blur(0.045px);
        transform: translateY(0.15px) translateX(0.15px);
    }
    75% {
        text-shadow: 0 0 3.6px rgba(0, 0, 0, 0.135), 0 0 7.5px rgba(0, 0, 0, 0.105), 0 0 11.1px rgba(0, 0, 0, 0.075);
        filter: blur(0.375px);
        transform: translateY(-0.15px) translateX(0.3px);
    }
    100% {
        text-shadow: 0 0 2.4px rgba(0, 0, 0, 0.12), 0 0 4.5px rgba(0, 0, 0, 0.09), 0 0 6.6px rgba(0, 0, 0, 0.06);
        filter: blur(0.18px);
        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(322px, 1fr));
    gap: 30px;
    max-width: 1200px;
    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: 350px;
    height: 366px;
    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.09px) brightness(1); }
    25% { filter: blur(0.24px) brightness(1.03); }
    50% { filter: blur(0.03px) brightness(0.985); }
    75% { filter: blur(0.27px) brightness(1.045); }
    100% { filter: blur(0.09px) 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.09px) brightness(1);
        transform: scale(1);
    }
    25% { 
        filter: blur(0.24px) brightness(1.03);
        transform: scale(1.0015);
    }
    50% { 
        filter: blur(0.03px) brightness(0.985);
        transform: scale(0.9994);
    }
    75% { 
        filter: blur(0.27px) brightness(1.045);
        transform: scale(1.0006);
    }
    100% { 
        filter: blur(0.09px) 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.09px) brightness(1); }
    25% { filter: blur(0.24px) brightness(1.06); }
    50% { filter: blur(0.03px) brightness(0.97); }
    75% { filter: blur(0.27px) brightness(1.09); }
    100% { filter: blur(0.09px) 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.12px) brightness(1);
        box-shadow: 0 0 6px rgba(224, 224, 224, 0.06);
    }
    25% { 
        filter: blur(0.3px) brightness(1.03);
        box-shadow: 0 0 9px rgba(224, 224, 224, 0.09);
    }
    50% { 
        filter: blur(0.03px) brightness(0.985);
        box-shadow: 0 0 4.5px rgba(224, 224, 224, 0.045);
    }
    75% { 
        filter: blur(0.36px) brightness(1.045);
        box-shadow: 0 0 10.5px rgba(224, 224, 224, 0.105);
    }
    100% { 
        filter: blur(0.12px) brightness(1);
        box-shadow: 0 0 6px rgba(224, 224, 224, 0.06);
    }
}

.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(300px, 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(10, 10, 10, 0.98);
        border-top: 1px solid #333;
        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;
    }
}

/* ==============================
   MOBILE OPTIMIZATIONS
   ============================== */

@media (max-width: 768px) {

    /* --- Hero --- */
    /* Disable fixed background: causes rendering bugs on iOS Safari */
    .hero {
        background-attachment: scroll;
        padding: 100px 15px 60px;
    }

    /* Hero album cover: constrain fixed 300px size on narrow screens */
    .hero-album-cover {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    /* Reduce section padding: 100px is too tall on a phone screen */
    .news-section,
    .live-section,
    .music-section,
    .discography-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    /* --- Music section --- */
    .soundcloud-players {
        margin-bottom: 40px;
    }

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

    .music-videos h3 {
        font-size: 1.5rem;
    }

    /* Spotify embed: reduce height on mobile */
    #spotify-embed-container iframe {
        height: 380px;
    }

    /* Videos grid: override the minmax(400px) which forces 400px min width */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* --- Discography --- */
    /* Two columns on tablet-width phones */
    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Album images: fixed 350x366px overflows on narrow screens */
    .album-cover {
        overflow: visible;
    }

    .album-cover img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    /* Hover info: hover doesn't work on touch; show it permanently */
    .album-hover-info {
        position: static;
        opacity: 1;
        background: #1a1a1a;
        padding: 12px 15px;
        border: 1px solid #333;
        border-top: none;
    }

    /* Hide tracklist: too dense to read on a small screen */
    .tracklist-hover {
        display: none;
    }

    /* Disable zoom-on-hover effect for touch devices */
    .album-item:hover .album-cover img {
        transform: none;
    }
}

@media (max-width: 480px) {

    /* Single column discography on small phones */
    .discography-grid {
        grid-template-columns: 1fr;
    }

    /* Further reduce section padding */
    .news-section,
    .live-section,
    .music-section,
    .discography-section,
    .contact-section {
        padding: 50px 0;
    }

    /* Section header margin */
    .section-header {
        margin-bottom: 40px;
    }

    /* Hero description text */
    .hero-description p {
        font-size: 1.1rem;
    }
}

/* ── MOBILE NAVIGATION ── */
@media (max-width: 768px) {
    /* Body overflow fix */
    body {
        overflow-x: hidden !important;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex !important;
    }

    /* Hide desktop nav */
    .nav-desktop {
        display: none !important;
    }

    /* Mobile nav menu */
    .nav-mobile {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid #333;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 4999;
    }

    .nav-mobile.active {
        transform: translateY(0);
    }

    .nav-mobile a,
    .nav-mobile button {
        display: block;
        width: 100%;
        padding: 16px 20px;
        border: none;
        background: none;
        color: #e0e0e0;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        text-align: left;
        border-bottom: 1px solid #1a1a1a;
        transition: background 0.3s ease;
        box-sizing: border-box;
    }

    .nav-mobile a:hover,
    .nav-mobile button:hover {
        background: #1a1a1a;
    }

    .nav-mobile-subscribe {
        padding: 16px 20px;
        border-top: 1px solid #333;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-mobile-subscribe button {
        width: 100%;
        padding: 12px !important;
    }
}

/* ── MOBILE GENERAL ── */
@media (max-width: 768px) {
    /* Reduce hero padding on mobile */
    .hero {
        min-height: 100vh;
        padding: 100px 0 40px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1;
        padding: 0 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }

    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Section headers */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1rem; }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    /* Release section - full width featured on mobile */
    .release-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
        padding: 0;
    }

    .release-content > * {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 40px 16px;
    }

    .artwork-large {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 20px 16px;
    }

    /* Hero image sizing - make prominent */
    .hero-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 30px 16px;
    }

    .hero-album-cover {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        max-height: 500px;
        margin: 0 auto;
    }

    /* Featured news - break it out on mobile */
    .featured-news {
        margin: 0;
        padding: 0;
    }

    .featured-news-item {
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .featured-news-content {
        padding: 30px 16px;
        gap: 20px;
    }

    .featured-artwork .featured-image {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 400px;
    }

    /* Album covers - larger on mobile */
    .album-cover img {
        width: 100%;
        height: auto;
        max-width: none;
    }

    /* Videos grid */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* News grid - large cards */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-item {
        padding: 24px 16px;
        border: none;
        border-bottom: 1px solid #1a1a1a;
        margin-bottom: 0;
    }

    /* Discography - single column, larger */
    .discography-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    /* Section padding */
    .section-header {
        margin-bottom: 30px;
        padding: 0 16px;
    }

    /* Make main content full width */
    main {
        overflow-x: hidden;
    }

    /* Sections with full width on mobile */
    .latest-release,
    .news-section,
    .music-section,
    .discography-section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden !important;
    }

    .hero {
        padding: 80px 0 30px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 8px;
        padding: 0 14px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 14px;
    }

    .hero-buttons {
        padding: 0 14px;
        gap: 10px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 0.95rem; }

    p { font-size: 13px; }

    .container {
        padding: 0 14px;
    }

    /* Full width featured elements */
    .release-content > * {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 30px 14px;
    }

    .hero-album-cover {
        max-width: 100% !important;
        max-height: 450px;
    }

    .featured-artwork .featured-image {
        max-height: 350px;
    }

    .album-cover img {
        max-width: 100%;
    }

    .news-grid {
        gap: 0;
    }

    .news-item {
        padding: 20px 14px;
        border-bottom: 1px solid #1a1a1a;
    }

    .discography-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 14px;
    }

    .featured-news-content {
        padding: 24px 14px;
        gap: 16px;
    }

    /* Ticker smaller on mobile */
    .ticker span {
        font-size: 8px !important;
        padding-right: 15px !important;
    }

    /* Contact form */
    input, textarea, select {
        font-size: 16px !important;
    }

    /* Button sizing */
    .hero-buttons button,
    .hero-buttons a {
        font-size: 11px;
        padding: 10px 14px;
    }

    .section-header {
        padding: 0 14px;
    }
}