/* ===========================================
   GRAY-V - DARK THEME
   Colors: Black, Purple, Blue, Silver
   =========================================== */

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --purple-primary: #6b46c1;
    --purple-dark: #4a148c;
    --purple-light: #9333ea;
    --blue-electric: #3b82f6;
    --blue-dark: #1e40af;
    --silver: #c0c0c0;
    --silver-dark: #808080;
    --white: #ffffff;
    --gradient-purple: linear-gradient(135deg, #4a148c 0%, #6b46c1 50%, #3b82f6 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: var(--primary-black);
    color: var(--silver);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================================
   LOGO
   =========================================== */

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */

header {
    background: var(--gradient-dark);
    border-bottom: 3px solid var(--purple-primary);
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    text-align: left;
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.logo-container img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(107, 70, 193, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(107, 70, 193, 0.8));
}

.Navigation nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
}

.Navigation nav ul li {
    position: relative;
}

.Navigation nav ul li a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.Navigation nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.Navigation nav ul li a:hover {
    color: var(--white);
    text-shadow: 0 0 15px rgba(107, 70, 193, 0.8);
}

.Navigation nav ul li a:hover::before {
    width: 80%;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                url('images/BandImage4.png') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple);
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(107, 70, 193, 0.8),
                 0 0 60px rgba(59, 130, 246, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(107, 70, 193, 0.8),
                     0 0 40px rgba(59, 130, 246, 0.6);
    }
    to {
        text-shadow: 0 0 30px rgba(107, 70, 193, 1),
                     0 0 60px rgba(59, 130, 246, 0.8),
                     0 0 80px rgba(107, 70, 193, 0.6);
    }
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--silver);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-purple);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(107, 70, 193, 0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.8);
    border-color: var(--silver);
}

/* ===========================================
   MAIN CONTENT
   =========================================== */

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

main h1 {
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--silver);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* ===========================================
   SECTIONS
   =========================================== */

section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-purple);
}

/* ===========================================
   HELP WANTED SECTION
   =========================================== */

.help-wanted {
    background: var(--primary-black);
    border-top: 2px solid var(--purple-primary);
    border-bottom: 2px solid var(--purple-primary);
    position: relative;
    overflow: hidden;
}

.help-wanted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(10%) scale(1.1);
        opacity: 0.8;
    }
}

.help-wanted-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.help-wanted-graphic {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.guitar-icon {
    font-size: 8rem;
    animation: rock 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(107, 70, 193, 0.8));
}

@keyframes rock {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.help-wanted-badge {
    display: inline-block;
    background: var(--gradient-purple);
    padding: 1rem 3rem;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(107, 70, 193, 0.6),
                0 0 60px rgba(59, 130, 246, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
    border: 3px solid var(--purple-light);
    position: relative;
    margin-top: 1rem;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(107, 70, 193, 0.6),
                    0 0 60px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(107, 70, 193, 0.9),
                    0 0 80px rgba(59, 130, 246, 0.6),
                    0 0 100px rgba(107, 70, 193, 0.4);
    }
}

.badge-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.help-wanted-content {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #1a1a2e 100%);
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.help-wanted-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--purple-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.requirements, .offer {
    margin-bottom: 2rem;
}

.requirements h3, .offer h3 {
    color: var(--purple-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.requirements ul, .offer ul {
    list-style: none;
    padding-left: 0;
}

.requirements ul li, .offer ul li {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.requirements ul li::before, .offer ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--blue-electric);
    font-size: 1.2rem;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--purple-primary);
}

.urgency-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.apply-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--gradient-purple);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(107, 70, 193, 0.6);
    transition: all 0.3s ease;
    border: 3px solid var(--purple-light);
}

.apply-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 50px rgba(107, 70, 193, 0.9),
                0 0 60px rgba(59, 130, 246, 0.6);
    border-color: var(--white);
}

.contact-info {
    margin-top: 1.5rem;
    color: var(--silver);
    font-size: 1rem;
}

.contact-info strong {
    color: var(--blue-electric);
    font-size: 1.1rem;
}

/* ===========================================
   EVENTS SECTION
   =========================================== */

.events {
    background: var(--secondary-black);
    border-top: 2px solid var(--purple-dark);
    border-bottom: 2px solid var(--purple-dark);
}

.event-item {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #1a1a2e 100%);
    border: 2px solid var(--purple-primary);
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
    border-color: var(--purple-light);
}

.event-subheading {
    text-align: center;
    margin-top: 2rem;
}

.event-header {
    background: var(--gradient-purple);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-date {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.event-details {
    padding: 1.5rem;
    color: var(--silver);
    line-height: 1.8;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */

.contact {
    background: var(--primary-black);
}

.contact-item {
    background: var(--secondary-black);
    border: 2px solid var(--blue-electric);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--purple-light);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.contact-header h3 {
    color: var(--purple-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-details {
    color: var(--silver);
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--blue-electric);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--purple-light);
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.5);
}

/* ===========================================
   SOCIAL MEDIA SECTION
   =========================================== */

.social {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(107, 70, 193, 0.2);
    border: 2px solid var(--purple-primary);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--purple-primary);
    box-shadow: 0 0 30px rgba(107, 70, 193, 0.8);
    transform: scale(1.1);
}

/* ===========================================
   ABOUT SECTION
   =========================================== */

.about {
    background: var(--secondary-black);
    border-top: 2px solid var(--purple-dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--silver);
    margin-bottom: 1.5rem;
}

/* ===========================================
   FOOTER
   =========================================== */

footer {
    background: var(--primary-black);
    border-top: 3px solid var(--purple-primary);
    text-align: center;
    padding: 2rem;
    color: var(--silver-dark);
}

footer p {
    font-size: 1rem;
}

footer a {
    color: var(--blue-electric);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--purple-light);
}

/* ===========================================
   SETLIST MANAGER STYLES
   =========================================== */

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

.setlist-page-header {
    text-align: center;
    margin: 2rem 0 2rem;
    color: white;
}

.setlist-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.setlist-page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--silver);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    background: rgba(107, 70, 193, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid var(--purple-primary);
    color: var(--silver);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button:hover {
    background: rgba(107, 70, 193, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
    border-color: var(--purple-light);
    color: var(--white);
}

.tab-button.active {
    background: var(--gradient-purple);
    border-color: var(--purple-light);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.5);
    color: white;
}

.tab-count {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 8px;
}

/* Main Content Area */
.main-content {
    background: rgba(26, 26, 26, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid var(--purple-primary);
    overflow: hidden;
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

.setlist-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--purple-primary);
}

.setlist-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.setlist-description {
    color: var(--silver);
    font-size: 1.1rem;
}

.setlist-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: var(--gradient-purple);
    color: white;
    border-radius: 15px;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Group Section */
.group-section {
    margin-bottom: 25px;
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
}

.group-section.expanded {
    border-color: var(--purple-light);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

.group-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(30, 30, 40, 0.9) 100%);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.group-header:hover {
    background: var(--gradient-purple);
    color: white;
}

.group-section.expanded .group-header {
    background: var(--gradient-purple);
    color: white;
}

.group-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.group-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.group-section.expanded .group-toggle {
    transform: rotate(180deg);
}

.group-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 0.9rem;
}

.group-tuning {
    background: rgba(0,0,0,0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.group-song-count {
    background: rgba(0,0,0,0.3);
    padding: 5px 12px;
    border-radius: 15px;
}

.group-notes {
    margin-top: 10px;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    font-style: italic;
    border-left: 3px solid var(--purple-light);
}

.group-content {
    display: none;
    background: rgba(15, 15, 25, 0.9);
}

.group-section.expanded .group-content {
    display: block;
}

/* Song Items */
.song-item {
    border-bottom: 1px solid var(--purple-primary);
    transition: all 0.3s ease;
}

.song-item:last-child {
    border-bottom: none;
}

.song-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.song-header:hover {
    background: rgba(107, 70, 193, 0.2);
    padding-left: 30px;
}

.song-item.expanded .song-header {
    background: rgba(107, 70, 193, 0.3);
    border-left: 4px solid var(--purple-light);
}

.song-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.song-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.song-artist {
    color: var(--silver);
    font-size: 0.95rem;
}

.song-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--silver-dark);
}

.song-duration, .song-bpm {
    background: rgba(107, 70, 193, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    color: var(--silver);
}

.song-expand-icon {
    font-size: 1.1rem;
    color: var(--purple-light);
    transition: transform 0.3s ease;
}

.song-item.expanded .song-expand-icon {
    transform: rotate(180deg);
}

.song-content {
    display: none;
    padding: 20px;
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid var(--purple-primary);
}

.song-item.expanded .song-content {
    display: block;
}

.song-details {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    margin-bottom: 20px;
}

.song-meta-details {
    background: rgba(26, 26, 26, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border: 1px solid var(--purple-primary);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--purple-primary);
}

.meta-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: var(--purple-light);
}

.meta-value {
    color: var(--silver);
}

/* Lyrics Display */
.song-lyrics {
    background: rgba(26, 26, 26, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border: 1px solid var(--purple-primary);
    line-height: 1.8;
    max-height: 500px;
    overflow-y: auto;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.song-lyrics:hover {
    border-color: var(--purple-light);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.song-lyrics.auto-scrolling {
    border-color: var(--blue-electric);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.song-lyrics p {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.song-lyrics strong {
    color: var(--purple-light);
    display: block;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.lyrics-click-hint {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(107, 70, 193, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
    pointer-events: none;
}

.song-lyrics.auto-scrolling .lyrics-click-hint {
    background: rgba(59, 130, 246, 0.8);
}

/* Auto-scroll Progress Indicator */
.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-purple);
    transition: width 0.1s linear;
    z-index: 10;
}

/* Control Buttons */
.group-controls {
    text-align: center;
    margin: 30px 0;
}

.control-button {
    background: var(--gradient-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.control-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.6);
}

/* Auto-scroll Controls */
.scroll-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 15px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
}

.scroll-controls.active {
    display: block;
}

.scroll-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--silver);
}

.scroll-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.scroll-btn {
    background: rgba(107, 70, 193, 0.3);
    border: 1px solid var(--purple-primary);
    color: var(--purple-light);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: var(--purple-primary);
    color: white;
}

.scroll-btn.active {
    background: var(--blue-electric);
    border-color: var(--blue-electric);
    color: white;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--silver);
}

.loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(107, 70, 193, 0.2);
    border-top: 3px solid var(--purple-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth scrolling for lyrics */
.song-lyrics {
    scroll-behavior: smooth;
}

/* Highlight current lyric line during auto-scroll */
.current-line {
    background: rgba(107, 70, 193, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    border-left: 3px solid var(--purple-light);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo-container {
        text-align: center;
        margin-bottom: 1rem;
    }

    .Navigation nav ul {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 15px;
    }

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

    .tab-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 20px;
    }

    .setlist-stats {
        gap: 15px;
    }

    .song-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .song-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .song-meta {
        gap: 10px;
    }

    .group-info {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-controls {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 12px;
    }

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

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .event-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .guitar-icon {
        font-size: 5rem;
    }

    .badge-text {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .help-wanted-badge {
        padding: 0.8rem 2rem;
    }

    .help-wanted-content {
        padding: 2rem 1.5rem;
    }

    .help-wanted-content h2 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .urgency-text {
        font-size: 1.2rem;
    }

    .apply-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}