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

:root {
    --primary-color: #E68425; 
    --primary-dark: #ae651c; 
    --secondary-color: #000;
    --text-light: #fff;
    --text-dark: #000;
    --bg-dark: #000;
    --bg-dark-glass: rgba(0, 0, 0, 0.6);
    --bg-light-glass: rgba(255, 255, 255, 0.15);
    --transition-speed: 0.4s;
    --gradient-orange: linear-gradient(45deg, #E68425, #FFA500);
    --neon-glow: #FF4500; 
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-dark);
    background-image: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.glass-card {
    background-color: var(--bg-light-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 15px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-10px);
}
.glass-button {
    background-color: var(--bg-dark-glass);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
}
.glass-button:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
}



header {
    background: linear-gradient(to right, #000000, #1c1c1c, #000000);
    padding: 15px 0;
    border-bottom: 2px solid;
    border-image: var(--gradient-orange) 1;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    max-height: 90px;
    width: auto;
    transition: transform var(--transition-speed) ease-in-out;
}
.logo-container:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.6em;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: all var(--transition-speed) ease;
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-orange);
    transition: all var(--transition-speed) ease-out;
    transform: translateX(-50%);
}

.menu a:hover {
    color: var(--text-light);
}

.menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    font-size: 2em;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger.active {
    transform: rotate(180deg);
}

/* --- Section Transitions --- */
.main-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dynamic-section {
    width: 100%;
    margin: 0;
    padding: 0;
    display: none; 
    flex: 1;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    position: relative;
    padding-top: 80px; 
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(20px);
}

section.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 60vh;
    opacity: 1;
    transform: translateY(0);
}

#home {
    padding-top: 20px;
    justify-content: flex-start;
}
.home-section {
    min-height: calc(100vh - 120px); 
}


#home-band-title {
    width: 100%;
    max-width: 900px;
    margin: 20px auto 40px auto;
    background: linear-gradient(to right, #000000, #1c1c1c, #000000);
    padding: 25px 30px;
    text-align: center;
    border-radius: 10px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(230, 132, 37, 0.7); 
}

#home-band-title h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5em; 
    color: var(--primary-color); 
    letter-spacing: 5px; 
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(230, 132, 37, 0.8);
    margin: 0;
    line-height: 1.1;
}


.tour-announcement-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 25px;
    margin: 0 auto 40px auto;
    max-width: 650px;
    width: 90%;
    
    
    background-color: rgba(0, 0, 0, 0.5); 
    border: 2px solid rgba(255, 255, 255, 0.2); 
    
    cursor: pointer;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px var(--primary-color), 0 0 5px var(--neon-glow); }
    50% { box-shadow: 0 0 25px var(--primary-color), 0 0 10px var(--neon-glow); }
}

.tour-announcement-banner:hover {
    transform: scale(1.05);
    background-color: rgba(230, 132, 37, 0.2);
    animation: none; 
    box-shadow: 0 0 30px var(--primary-color);
}

.tour-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.2em;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    
   
    text-shadow: 0 0 5px var(--neon-glow), 0 0 10px var(--neon-glow);
    animation: neon-flash 1.5s infinite alternate;
}

@keyframes neon-flash {
    0% {
        text-shadow: 0 0 5px var(--neon-glow), 0 0 10px var(--neon-glow);
        opacity: 1;
    }
    100% {
        text-shadow: 0 0 10px var(--neon-glow), 0 0 15px var(--neon-glow), 0 0 20px rgba(255, 69, 0, 0.5);
        opacity: 0.9;
    }
}

.tour-subtitle {
    font-style: italic;
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 8px;
    font-weight: bold;
}

.click-for-shows {
    font-weight: bold;
    margin-top: 5px;
    color: var(--primary-color);
    font-size: 0.9em;
    opacity: 0.9;
    transition: opacity 0.3s;
}



.section-title-block,
.discography-title-block {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 30px auto;
    background: var(--gradient-orange);
    color: var(--text-dark);
    padding: 15px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(230, 132, 37, 0.5); 
    border-bottom: 3px solid var(--primary-dark);
}

.section-title-block h2,
.discography-title-block h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2em;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: color var(--transition-speed);
}


.home-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto;
    width: 100%;
}
.home-section-card {
    display: block;
    text-decoration: none;
    flex: 1 1 200px;
    max-width: 250px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
}
.home-section-card:hover {
    background-color: rgba(51, 51, 51, 0.6);
    transform: translateY(-8px);
}

.home-section-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.home-section-card p {
    color: var(--text-light);
    font-size: 0.95em;
    padding: 0;
    margin: 0;
}


.intro-container {
    width: 100%;
    max-width: 800px; 
    margin: 0 auto 40px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(26, 26, 26, 0); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.intro-text {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}


#gallery-container {
    width: 95%;
    max-width: 1000px;
    margin: 20px auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#main-image-container {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    background-color: var(--bg-dark); 
}

#main-image {
    width: 100%;
    height: 100%; 
    position: absolute; 
    top: 0;
    left: 0;
    
    object-fit: contain; 
    
    border-radius: 8px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease-in-out;
}

#thumbnail-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.thumbnail-img {
    height: 100px;
    width: auto;
    border-radius: 5px;
    border: 3px solid #333;
    cursor: pointer;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    object-fit: cover;
}

.thumbnail-img:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}
.thumbnail-img.active-thumbnail {
    border-color: var(--primary-color);
    
    box-shadow: 0 0 10px var(--primary-color);
}



.main-bio-text {
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 40px !important;
}

.our-journey-container {
    max-width: 950px;
    width: 100%;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    background-color: var(--bg-light-glass);
    color: var(--text-light);
}

.our-journey-container h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 25px;
}

.journey-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.journey-text {
    flex: 1;
}

.journey-text p {
    line-height: 1.7;
    padding: 0;
    margin-bottom: 0;
}

.journey-image-wrapper {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    border: 2px solid var(--primary-color);
    
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.journey-image:hover {
    transform: scale(1.05); 
    border-color: var(--text-light); 
    box-shadow: 0 5px 20px var(--primary-color); 
    cursor: pointer; 
}


.discography-page {
    background: #111;
    
    background-image: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
}

.singles-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}
.singles-wrapper h3,
.discography-container h3 {
    background: var(--gradient-orange);
    color: var(--secondary-color) !important;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 2em;
    box-shadow: 0 4px 15px rgba(230, 132, 37, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto; /* Ensure title doesn't stretch */
    margin-left: auto;
    margin-right: auto;
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center; 
    align-items: stretch; 
}

.single-item {
    padding: 20px;
    text-align: center;
    width: 100%; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.single-item h4,
.album-item h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2em;
}

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

.album-item {
    padding: 30px;
    margin-bottom: 30px;
}

.iframe-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.spotify-iframe {
    border-radius: 12px;
    width: 100%;
    height: 352px;
    border: 0;
}



.band-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    justify-items: center;
    align-items: stretch;
}

.member-card {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.member-card:hover {
    transform: translateY(-8px);
}

.member-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
    transition: all var(--transition-speed) ease;
}
.member-card:hover img {
    border-color: var(--text-light);
    transform: scale(1.05);
}

.member-card h3 {
    color: var(--text-light);
    margin-bottom: 10px;
}
.member-card sub h3 {
    margin-bottom: 0;
    font-size: 0.9em;
    font-weight: normal;
    color: #aaa;
}
.member-card p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
    padding: 0;
    margin-bottom: 0;
    flex-grow: 1; 
}


.merch-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.bandcamp-iframe {
    width: 100%; 
    min-height: 900px; 
    border-radius: 8px;
    margin-bottom: 20px;
}
.merch-link-container {
    padding: 15px !important;
    text-align: center !important;
}
.merch-link {
    color: var(--primary-color) !important; 
    text-decoration: none;
    font-weight: bold;
    transition: color var(--transition-speed);
}
.merch-link:hover {
    color: var(--text-light) !important;
    text-decoration: underline;
}


.clips-subtitle {
    font-size: 1.2em;
    font-weight: 500;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px auto !important;
    padding: 0 20px;
}

#clips .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    justify-items: center;
}

#clips .video-item {
    padding: 25px;
    text-align: center;
    width: 100%;
}
#clips .video-item:hover {
    transform: translateY(-8px) scale(1.02);
}

#clips .video-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; 
    position: relative;
    height: 0;
    border-radius: 8px;
}

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


.flashy-text {
    animation: flash 3s infinite;
}

@keyframes flash {
    0%, 100% { color: white; text-shadow: 0 0 10px white; }
    50% { color: black; text-shadow: 0 0 5px black; }
}

.shows-page {
    background: #000;
    background-image: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    justify-content: flex-start;
}
.tour-posters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 15px; 
}
.tour-poster {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    transform-origin: center center;
    backface-visibility: hidden;
    
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.tour-poster:hover {
    transform: scale(1.03); 
    box-shadow: 0 0 30px rgba(230, 132, 37, 0.8); 
    cursor: pointer; 
}





.home-button-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.home-button {
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.home-button:hover {
    color: var(--text-light);
    border-color: var(--text-light);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}



footer {
    background-color: var(--bg-dark);
    color: #888;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: 1px solid;
    border-image: var(--gradient-orange) 1;
    margin-top: auto;
    width: 100%;
    z-index: 90;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1;
    min-width: 200px;
}
.footer-center {
    justify-content: center;
}
.footer-right {
    justify-content: flex-end;
}

.logo-copyright-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.second-logo-img {
    max-height: 80px;
    width: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.second-logo-img:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: left;
    white-space: normal;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    color: #888;
    font-size: 24px;
    transition: color var(--transition-speed), transform var(--transition-speed);
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.special-thanks {
    text-align: right;
    font-style: italic;
    color: #666;
    white-space: nowrap;
}

.dede-link {
    color: #aaa;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.dede-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


#gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

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

#gallery-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border: 3px solid var(--primary-color);
    border-radius: 5px;
}

.close-modal, .prev-img, .next-img {
    cursor: pointer;
    position: absolute;
    color: var(--text-light);
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition-speed);
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 5px 15px;
}

.close-modal {
    top: 10px;
    right: 20px;
}
.prev-img, .next-img {
    top: 50%;
    transform: translateY(-50%);
}
.prev-img { left: 10px; }
.next-img { right: 10px; }

.close-modal:hover, .prev-img:hover, .next-img:hover {
    color: var(--primary-color);
    background-color: rgba(246, 204, 64, 0.2);
}



@media (max-width: 992px) {
    .journey-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .journey-image-wrapper {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 1200px) {
   
    header {
        padding: 10px 0;
    }
    .logo-img {
        max-height: 70px;
    }
    .logo-text {
        font-size: 1.2em;
    }
    nav {
        padding: 0 10px;
    }
    .menu {
        display: flex;
        flex-direction: column;
        background-color: rgba(17, 17, 17, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        align-items: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
        max-width: none;
        z-index: 95;
        transform: translateY(-150%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .menu.active {
        transform: translateY(0);
    }

    .menu a {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .menu.active a {
        opacity: 1;
        transform: translateY(0);
    }

   
    .menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .menu.active a:nth-child(2) { transition-delay: 0.15s; }
    .menu.active a:nth-child(3) { transition-delay: 0.2s; }
    .menu.active a:nth-child(4) { transition-delay: 0.25s; }
    .menu.active a:nth-child(5) { transition-delay: 0.3s; }
    .menu.active a:nth-child(6) { transition-delay: 0.35s; }
    .menu.active a:nth-child(7) { transition-delay: 0.4s; }


    .menu a:last-child {
        border-bottom: none;
    }

    .burger {
        display: block;
    }

    
    .dynamic-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .discography-title-block,
    .section-title-block {
        margin: 15px auto 25px auto;
        padding: 12px 15px;
        max-width: 95%;
    }
    .discography-title-block h2,
    .section-title-block h2 {
        font-size: 1.8em;
        letter-spacing: 2px;
    }
    
   
    #home-band-title {
        padding: 20px 20px;
        margin: 10px auto 30px auto;
    }
    #home-band-title h1 {
        font-size: 2.5em; 
        letter-spacing: 3px; 
    }
    
   
    .tour-announcement-banner {
        padding: 15px 15px;
        max-width: 95%;
    }
    .tour-title {
        font-size: 1.8em;
    }
    .tour-subtitle {
        font-size: 1em;
    }
    .click-for-shows {
        font-size: 0.8em;
    }
    

    
    .home-cards-grid {
        gap: 20px;
        margin: 40px auto;
    }
    .home-section-card {
        flex: 1 1 45%;
        max-width: 45%;
        padding: 20px;
    }

    
    .home-button-container {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 300px;
    }
    .home-button {
        padding: 8px 15px;
        font-size: 0.9em;
        display: block;
        width: 100%;
    }
    
    
    .band-members-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    
    .singles-grid {
        justify-content: flex-start;
    }
    .single-item {
        min-width: 250px;
    }
    .singles-wrapper h3,
    .discography-container h3 {
        font-size: 1.6em;
    }
    
    
    #clips .video-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .logo-copyright-container {
        flex-direction: column;
        gap: 5px;
    }
    .special-thanks {
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .home-section-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .thumbnail-img {
        height: 60px;
    }
    .close-modal, .prev-img, .next-img {
        font-size: 30px;
    }
    #home-band-title h1 {
        font-size: 2em; 
        letter-spacing: 2px; 
    }
    
    .tour-title {
        font-size: 1.5em;
    }
}