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

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background: #131719;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-image: 
        linear-gradient(to top, rgba(19, 21, 25, 0.5), rgba(19, 21, 25, 0.5)),
        url("When I was in the future_jacket_fullsize.png");
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-attachment: scroll;
}

/* Navigation */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(19, 23, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    transform: translateY(0);
}


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

.nav-logo a {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7));
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover,
.nav-link.active {
    color: #d4a574;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background: #d4a574;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Wrapper */
#wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
    padding-top: 0;
}

/* Always show navigation */
#wrapper {
    padding-top: 80px !important;
}

/* Section scroll offset for mobile navigation */
@media (max-width: 768px) {
    .panel:not(#intro) {
        scroll-margin-top: 90px;
    }
}

@media (max-width: 480px) {
    .panel:not(#intro) {
        scroll-margin-top: 85px;
    }
}

/* Main Content */
#main {
    flex: 1;
    min-height: 100vh;
}

/* Panel Styles */
.panel {
    display: block;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
}

/* Intro specific styles */
#intro {
    padding: 0;
    max-width: 100%;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2%;
    right: 3%;
    bottom: 0;
    background: repeating-linear-gradient(
        89deg,
        transparent,
        transparent 98px,
        rgba(212, 165, 116, 0.03) 100px
    );
    pointer-events: none;
    opacity: 0.3;
}

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

/* Headers */
.band-logo {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 1;
    position: relative;
}

.band-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.band-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: logoGlow 3s ease-in-out infinite alternate, logoEntrance 1.2s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(3px 3px 12px rgba(0, 0, 0, 0.8)) 
                drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
    }
    100% {
        filter: drop-shadow(4px 4px 16px rgba(0, 0, 0, 0.9)) 
                drop-shadow(0 0 30px rgba(212, 165, 116, 0.5));
    }
}

.band-logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0 0 40px rgba(212, 165, 116, 0.6));
    animation-play-state: paused;
}

/* Hero Section for Intro */
.intro-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        linear-gradient(45deg, rgba(19, 23, 25, 0.2), rgba(30, 40, 50, 0.3)),
        radial-gradient(ellipse at center, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
    overflow: hidden;
    padding: 0 2rem;
    text-align: center;
}

.intro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 171, 145, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.band-logo-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 600px;
}

.band-logo-hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0 0 40px rgba(212, 165, 116, 0.4))
            drop-shadow(0 0 80px rgba(212, 165, 116, 0.2));
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: heroLogoGlow 4s ease-in-out infinite alternate, heroLogoEntrance 2s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes heroLogoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.7);
    }
    40% {
        opacity: 0.5;
        transform: translateY(-20px) scale(0.9);
    }
    70% {
        opacity: 0.8;
        transform: translateY(15px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroLogoGlow {
    0% {
        filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.9)) 
                drop-shadow(0 0 40px rgba(212, 165, 116, 0.4))
                drop-shadow(0 0 80px rgba(212, 165, 116, 0.2));
    }
    100% {
        filter: drop-shadow(6px 6px 30px rgba(0, 0, 0, 0.95)) 
                drop-shadow(0 0 60px rgba(212, 165, 116, 0.6))
                drop-shadow(0 0 120px rgba(212, 165, 116, 0.3));
    }
}

.band-logo-hero img:hover {
    transform: scale(1.05);
    filter: drop-shadow(8px 8px 40px rgba(0, 0, 0, 0.9)) 
            drop-shadow(0 0 80px rgba(212, 165, 116, 0.7))
            drop-shadow(0 0 160px rgba(212, 165, 116, 0.4));
    animation-play-state: paused;
}

.band-tagline {
    position: relative;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #d4a574;
    text-align: center;
    letter-spacing: 0.3rem;
    font-weight: 300;
    text-transform: lowercase;
    opacity: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    animation: taglineEntrance 2.5s ease-out 0.5s forwards;
}

@keyframes taglineEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.1rem;
    }
    60% {
        opacity: 0.7;
        transform: translateY(-5px);
        letter-spacing: 0.25rem;
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
        letter-spacing: 0.3rem;
    }
}

/* Content section styling for intro */
#intro .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(19, 23, 25, 0.85);
    backdrop-filter: blur(5px);
}

header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: #d4a574;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    opacity: 0.95;
}

header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2rem;
    color: #888888;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Styles */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.content p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

.content h3 {
    font-family: 'Oswald', sans-serif;
    color: #c7956d;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content h4 {
    font-family: 'Oswald', sans-serif;
    color: #cccccc;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.content li {
    color: #d8dee9;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.content li:before {
    content: "•";
    color: #c7956d;
    position: absolute;
    left: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.content a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    border-bottom: 1px dotted rgba(212, 165, 116, 0.5);
}

.content a:hover {
    color: #e6b885;
    border-bottom: 1px solid rgba(212, 165, 116, 0.8);
}

/* Album Highlight */
.album-highlight {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(30, 40, 50, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(-0.5deg);
}

.album-highlight::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.1) 50%, transparent 70%);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.5;
}

/* Bandcamp Widget */
.bandcamp-widget {
    margin: 2rem 0;
    text-align: center;
}

.bandcamp-widget iframe {
    border-radius: 6px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 165, 116, 0.4);
    max-width: 100%;
    height: auto;
    transform: rotate(0.3deg);
    opacity: 0.98;
}

/* Streaming Links */
.streaming-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stream-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background: rgba(30, 40, 50, 0.6);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 4px;
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-0.2deg);
}

.stream-link:nth-child(even) {
    transform: rotate(0.2deg);
}

.stream-link:hover {
    border-color: rgba(212, 165, 116, 0.6);
    color: #e6b885;
    transform: translateY(-1px) rotate(0deg);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.stream-link.spotify:hover {
    border-color: #1db954;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(29, 185, 84, 0.3);
}

.stream-link.apple:hover {
    border-color: #fa243c;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(250, 36, 60, 0.3);
}

.stream-link.youtube:hover {
    border-color: #ff0000;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.3);
}

.stream-link.bandcamp:hover {
    border-color: #629aa0;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(98, 154, 160, 0.3);
}

/* Release Categories */
.releases {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.release-category {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-category:nth-child(even) {
    transform: rotate(0.1deg);
}

.release-category:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.release-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

/* Streaming Platforms */
.streaming-platforms {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(19, 23, 25, 0.8);
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.streaming-platforms:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.streaming-platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

/* Show Styles */
.show {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show:nth-child(even) {
    transform: rotate(0.1deg);
}

.show:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.show::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

.ticket-info {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    border-radius: 6px;
    margin: 3rem 0 2rem 0;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    transform: rotate(0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-info:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ticket-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

/* Contact Methods */
.contact-methods,
.social-media {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media {
    transform: rotate(0.1deg);
}

.contact-methods:hover,
.social-media:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-methods::before,
.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

/* Members and Timeline */
.members,
.timeline {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline {
    transform: rotate(0.1deg);
}

.members:hover,
.timeline:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.members::before,
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

.band-overview {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(19, 23, 25, 0.8);
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.band-overview:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.band-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

/* News Section Styles */
.news-items {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.news-item {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:nth-child(even) {
    transform: rotate(0.1deg);
}

.news-item:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

.news-date {
    color: #c7956d;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    position: relative;
}

.news-date::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(212, 165, 116, 0.5);
}

.news-item h4 {
    color: #e6b885;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0.3px;
}

.news-item p {
    color: #d8dee9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.news-link {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    transition: left 0.5s ease;
}

.news-link:hover {
    color: #ffab91;
    border-color: rgba(212, 165, 116, 0.6);
    background: rgba(212, 165, 116, 0.15);
    text-shadow: 0 0 8px rgba(255, 171, 145, 0.3);
}

.news-link:hover::before {
    left: 100%;
}

.news-archive {
    background: rgba(19, 23, 25, 0.8);
    padding: 2rem;
    border-radius: 6px;
    margin: 3rem 0 0 0;
    border: 1px solid rgba(212, 165, 116, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    transform: rotate(0.1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-archive:hover {
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.news-archive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.6) 0%, rgba(199, 149, 109, 0.4) 50%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

.news-archive p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(19, 23, 25, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .nav-container {
        padding: 1rem;
    }

    .nav-logo img {
        max-width: 80px;
    }

    #wrapper {
        padding-top: 80px !important;
    }
    
    .panel:not(#intro) {
        scroll-margin-top: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .panel {
        padding: 2rem 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .band-logo {
        margin: 2rem 0 3rem 0;
    }
    
    .band-logo img {
        max-width: 320px;
    }
    
    .band-logo::before {
        width: 100%;
        height: 100%;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header h2 {
        font-size: 2rem;
    }
    
    .releases {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .album-cover {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .panel {
        padding: 1.5rem 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .band-logo {
        margin: 1.5rem 0 2.5rem 0;
    }
    
    .band-logo img {
        max-width: 260px;
    }
    
    .band-logo::before {
        width: 95%;
        height: 95%;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header h2 {
        font-size: 1.8rem;
    }
    
    header p {
        margin-bottom: 2rem;
    }
    
    .bandcamp-widget iframe {
        width: 100%;
        height: 400px;
    }
    
    .streaming-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stream-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% {
        opacity: 1;
        text-shadow: 0 0 5px rgba(255, 68, 68, 0.5);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 15px rgba(255, 68, 68, 0.8);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 5px rgba(255, 68, 68, 0.5);
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Subtle paper texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(212, 165, 116, 0.01) 101px,
            rgba(212, 165, 116, 0.01) 102px
        ),
        radial-gradient(ellipse at 80% 85%, rgba(199, 149, 109, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Subtle glow effects */
.content strong {
    color: #ffab91;
    text-shadow: 0 0 8px rgba(255, 171, 145, 0.4);
}

/* Subtle dust particles */
.panel:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 1px;
    height: 1px;
    background: rgba(212, 165, 116, 0.4);
    border-radius: 50%;
    box-shadow: 
        15px 25px 0 rgba(199, 149, 109, 0.3),
        -20px 40px 0 rgba(212, 165, 116, 0.2),
        30px -15px 0 rgba(199, 149, 109, 0.25);
    animation: drift 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes drift {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.7;
    }
}