:root {
    --primary-color: #ff3333;
    --secondary-color: #2d2d2d;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #ff4d4d;
    --secondary-color-light: #3d3d3d;
    --secondary-color-lighter: #4d4d4d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    position: relative;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/website-graphics/kinetic_banner.png') center/cover no-repeat fixed;
    opacity: 0.35;
    filter: brightness(1.0) contrast(1.5) saturate(1.4);
    z-index: -1;
    animation: subtlePulse 10s ease-in-out infinite;
}

@keyframes subtlePulse {
    0% {
        opacity: 0.35;
        filter: brightness(1.0) contrast(1.5) saturate(1.4);
    }
    50% {
        opacity: 0.4;
        filter: brightness(1.1) contrast(1.6) saturate(1.5);
    }
    100% {
        opacity: 0.35;
        filter: brightness(1.0) contrast(1.5) saturate(1.4);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.band-name {
    margin-left: 1rem;
}

.band-name h1 {
    color: #ff4d4d;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 
        2px 2px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        0 0 10px rgba(255, 77, 77, 0.7);
    transform: skew(-5deg);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

section {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.75);
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    backdrop-filter: blur(2px);
}

section > h2,
#about h2, #music h2, #members h2, #tour h2, #contact h2, .gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content p {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.15;
    z-index: 1;
}

.symbol-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.music-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.media-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin: 0 auto 3rem auto;
}

.platform-card {
    width: 800px;
    margin: 0 auto 1rem auto;
    background: #23272f;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.2);
}

.platform-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spotify-embed {
    width: 100%;
    min-height: 352px;
}

.music-links {
    text-align: center;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
}

.music-links h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.media-links {
    text-align: center;
    margin-top: 2em;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    margin-top: 1em;
}

.streaming-link {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.2em;
    text-decoration: none;
    color: inherit;
    padding: 0.5em 1em;
    border-radius: 4px;
    transition: background 0.2s;
}

.streaming-link:hover {
    background: #222;
    color: var(--accent-color);
}

.streaming-link i {
    font-size: 1.5rem;
}

.streaming-link span {
    font-size: 1rem;
}

.members {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.members-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top row with three members */
.members-grid .top-row {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 2rem;
    justify-content: center;
}

/* Bottom row with two members */
.members-grid .bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 2rem;
    justify-content: center;
}

.member-card {
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-color-light));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-color-lighter);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 320px;
    min-width: 300px;
    max-width: 320px;
    flex: 0 0 320px;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.2);
}

.member-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.member-card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.member-card p {
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
}

#tour {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

#tour h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.tour-dates {
    position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.upcoming-shows-section {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 3rem;
    z-index: 3;
}

.upcoming-shows-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}

.past-shows-section {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}

.past-shows h3 {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--text-color);
    opacity: 0.9;
}

.upcoming-shows-list,
.past-shows-list {
    display: block;
    width: 100%;
}

.tour-date {
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-color-light));
    border: 1px solid var(--secondary-color-lighter);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tour-date.past {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.4), rgba(61, 61, 61, 0.4));
    border-color: rgba(77, 77, 77, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.2);
}

.tour-date.past:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.5), rgba(61, 61, 61, 0.5));
}

.tour-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.tour-description {
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 0.2rem;
    margin-bottom: 0;
    font-style: italic;
}

.tour-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.tour-date.past .tour-info h3 {
    color: rgba(255, 51, 51, 0.6);
}

.tour-date.past .tour-info p {
    opacity: 0.5;
}

.tour-info .time {
    color: #4CAF50;
    font-weight: 500;
    margin-top: 0.5rem;
}

.tour-date.past .tour-info .time {
    color: rgba(76, 175, 80, 0.5);
}

.toggle-past-shows {
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-color-light));
    color: var(--text-color);
    border: 1px solid var(--secondary-color-lighter);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 250px;
    justify-content: center;
}

.toggle-past-shows:hover {
    background: linear-gradient(145deg, var(--secondary-color-light), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.2);
}

.toggle-past-shows .show-text {
    display: inline;
}

.toggle-past-shows .hide-text {
    display: none;
}

.toggle-past-shows.active .show-text {
    display: none;
}

.toggle-past-shows.active .hide-text {
    display: inline;
}

.past-dates {
    margin-top: 2rem;
    opacity: 1;
    max-height: 2000px;
    transition: opacity 0.3s ease, max-height 0.5s ease;
    overflow: hidden;
}

.past-dates.hidden {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    pointer-events: none;
    visibility: hidden;
}

.ticket-button,
.event-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-button {
    background: linear-gradient(145deg, var(--primary-color), #ff4d4d);
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.event-button {
    background: linear-gradient(145deg, #4CAF50, #45a049);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.tour-date.past .event-button {
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.5), rgba(69, 160, 73, 0.5));
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
    background: linear-gradient(145deg, #ff4d4d, var(--primary-color));
}

.event-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(145deg, #45a049, #4CAF50);
}

.tour-date.past .event-button:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
    background: linear-gradient(145deg, rgba(69, 160, 73, 0.6), rgba(76, 175, 80, 0.6));
}

.empty-message {
    text-align: center;
    color: var(--text-color-muted);
    padding: 2rem;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    color: white;
    font-size: 1.4rem;
    background-color: #1a1a1a;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
}

.gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Ensure responsive behavior */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery items now use the test-box style */
.test-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border: 1px solid #444;
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.test-box-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.test-box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    min-height: 100%;
    background-color: #2a2a2a;
}

.test-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.test-box:hover .test-box-image {
    transform: scale(1.05);
}

.test-box-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.test-box:hover .test-box-info {
    transform: translateY(0);
}

.test-box-info h3 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.2rem;
}

.test-box-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.test-box-details i {
    margin-right: 0.5rem;
    color: white;
}

.test-box-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.test-box-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

@media (max-width: 1400px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .members-grid .top-row,
    .members-grid .bottom-row {
        grid-template-columns: repeat(auto-fit, 250px);
        gap: 1.5rem;
    }
    
    .member-card {
        width: 250px;
    }
    
    .band-name h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .members-grid .top-row,
    .members-grid .bottom-row {
        grid-template-columns: repeat(2, 250px);
    }
    
    .hero-symbol {
        width: 400px;
        height: 400px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    section {
        padding: 3rem 5%;
    }

    .music-platforms {
        grid-template-columns: 1fr;
    }

    .tour-dates {
        padding: 0 1rem;
    }

    .tour-date {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .tour-date > div:first-child {
        padding-right: 0;
        text-align: center;
    }

    .streaming-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .band-name {
        display: block;
    }
    
    .band-name h1 {
        font-size: 1.8rem;
    }
    
    .navbar {
        justify-content: space-between;
    }

    #admin-status {
        margin-left: 0;
        margin-top: 1rem;
        padding: 0;
    }
    
    #admin-status .admin-link,
    #admin-status .logout-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85em;
    }

    .tour-links {
        flex-direction: column;
        width: 100%;
        min-width: unset;
        justify-content: center;
    }

    .ticket-button,
    .event-button {
        width: 100%;
        justify-content: center;
    }

    .toggle-past-shows {
        width: 100%;
        max-width: none;
    }

    .lightbox {
        padding: 10px;
    }

    .lightbox-content {
        max-width: 95%;
        padding: 10px;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-close {
        top: 0;
        right: 0;
    }

    .lightbox-info {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .members-grid .top-row,
    .members-grid .bottom-row {
        grid-template-columns: 300px;
    }
    
    .member-card {
        width: 300px;
    }
}

/* Admin Status and Logout Styles */
#admin-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    padding: 0.5rem;
}

#admin-status .admin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}

#admin-status .admin-link:hover {
    background: rgba(0, 0, 0, 0.4);
}

#admin-status .admin-link i {
    font-size: 1.1em;
}

#admin-status .logout-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

#admin-status .logout-btn:hover {
    background: #ff3333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 77, 77, 0.4);
}

#admin-status .logout-btn i {
    font-size: 1.1em;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0;
    box-sizing: border-box;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100vh;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #000;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    z-index: 1;
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2;
    max-height: 30%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

/* Make sure all lightbox info is visible */
.lightbox-info p {
    margin: 5px 0;
    line-height: 1.4;
}

.lightbox-info h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.gallery-tag {
    background: rgba(255, 77, 77, 0.3);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.6);
}

.lightbox-counter {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 10;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.lightbox-prev {
    left: 10px;
    border-radius: 0 4px 4px 0;
}

.lightbox-next {
    right: 10px;
    border-radius: 4px 0 0 4px;
}

.lightbox-nav:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-info i {
    margin-right: 8px;
    color: #cccccc;
    width: 16px;
    text-align: center;
}

/* Mobile styles for lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        width: 100%;
        max-height: 100vh;
    }
    
    .lightbox-image {
        height: 100vh;
    }
    
    .lightbox-info {
        max-height: 40%;
    }
}

/* Improved Band Member Gear Styles */
.member-gear {
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    padding: 0;
    text-align: left;
}

.member-card:hover .member-gear {
    max-height: 350px;
    padding: 15px;
    opacity: 1;
}

.member-gear h4 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 51, 51, 0.3);
    padding-bottom: 5px;
}

.gear-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.gear-list li {
    margin-bottom: 6px;
    color: #ddd;
    line-height: 1.3;
    position: relative;
    padding-left: 5px;
}

.gear-list li:last-child {
    margin-bottom: 0;
}

.gear-list li strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 5px;
    display: block;
}

/* Member lightbox specific styles */
.member-lightbox .lightbox-info {
    padding: 25px;
    max-height: 50vh;
    overflow-y: auto;
}

.member-lightbox .lightbox-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.member-lightbox .lightbox-info .role {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.member-lightbox .lightbox-info .bio {
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-lightbox .member-gear-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.member-lightbox .member-gear-list h4 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 20px;
}

.member-lightbox .member-gear-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.member-lightbox .gear-category {
    margin-bottom: 10px;
}

.member-lightbox .gear-category h5 {
    font-size: 16px;
    color: var(--color-accent-secondary);
    margin-bottom: 5px;
}

.member-lightbox .gear-category p {
    font-size: 14px;
    line-height: 1.4;
}

/* Make member cards have cursor pointer to indicate they're clickable */
.member-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .member-lightbox .member-gear-details {
        grid-template-columns: 1fr;
    }
}

/* Fullscreen member lightbox styles */
.fullscreen-member .lightbox-content {
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0;
}

.fullscreen-member .member-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.fullscreen-member .member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 20%, 
        rgba(0, 0, 0, 0.0) 50%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.fullscreen-member .member-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 3;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.fullscreen-member .member-info-top {
    padding: 70px 50px 0;
    text-align: center;
}

.fullscreen-member .member-info-bottom {
    padding: 20px 50px 40px;
    overflow-y: auto;
    max-height: 50vh;
    pointer-events: auto;
}

.fullscreen-member .lightbox-close,
.fullscreen-member .lightbox-counter,
.fullscreen-member .lightbox-nav {
    z-index: 10;
    pointer-events: auto;
}

.fullscreen-member .member-info-overlay h3 {
    font-size: 36px;
    margin-bottom: 0;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.fullscreen-member .member-info-overlay .role {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.fullscreen-member .member-info-overlay .bio {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.fullscreen-member .member-gear-list {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.fullscreen-member .member-gear-list h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 77, 77, 0.4);
    padding-bottom: 10px;
}

.fullscreen-member .member-gear-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.fullscreen-member .gear-category {
    margin-bottom: 15px;
}

.fullscreen-member .gear-category h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.fullscreen-member .gear-category p {
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile styles for fullscreen member */
@media (max-width: 768px) {
    .fullscreen-member .member-info-top {
        padding: 60px 20px 0;
    }
    
    .fullscreen-member .member-info-bottom {
        padding: 20px 20px 30px;
        max-height: 60vh;
    }
    
    .fullscreen-member .member-info-overlay h3 {
        font-size: 28px;
    }
    
    .fullscreen-member .member-info-overlay .role {
        font-size: 20px;
    }
    
    .fullscreen-member .member-info-overlay .bio {
        font-size: 16px;
    }
    
    .fullscreen-member .member-gear-details {
        grid-template-columns: 1fr;
    }
    
    .fullscreen-member .member-gear-list {
        padding: 15px;
    }
}

.member-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.member-row > .member-card:empty {
    display: none;
}