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

:root {
    --neon-purple: #9d4edd;
    --neon-green: #00ff00;
    --dark-bg: #0a0a0a;
    --darker-purple: #1a0a2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: var(--dark-bg);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated 80s Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(157, 78, 221, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 221, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Scan lines effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.02) 2px,
        rgba(0, 255, 0, 0.02) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Main Container - Full Width Layout */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Grid - Side by Side Layout */
.main-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Decorative corner accents - disabled for grid layout */
.hero::before,
.hero::after {
    display: none;
}

.logo-container {
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 0 4px var(--dark-bg),
        0 0 0 6px var(--neon-purple),
        0 0 40px rgba(157, 78, 221, 0.6),
        0 0 80px rgba(0, 255, 0, 0.3),
        inset 0 0 40px rgba(157, 78, 221, 0.3);
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 
            0 0 0 4px var(--dark-bg),
            0 0 0 6px var(--neon-purple),
            0 0 40px rgba(157, 78, 221, 0.6),
            0 0 80px rgba(0, 255, 0, 0.3),
            inset 0 0 40px rgba(157, 78, 221, 0.3);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 
            0 0 0 4px var(--dark-bg),
            0 0 0 6px var(--neon-green),
            0 0 60px rgba(0, 255, 0, 0.5),
            0 0 100px rgba(157, 78, 221, 0.4),
            inset 0 0 50px rgba(0, 255, 0, 0.2);
    }
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.4s ease;
}

.logo-container:hover .logo {
    transform: scale(1.08);
}

/* Band Title */
h1.band-name {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.7));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 0, 0.6));
    }
}

.tagline {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #e0e0e0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.location {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--neon-purple);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location::before,
.location::after {
    content: '—';
    opacity: 0.5;
}

/* ===================== */
/* BANDS MARQUEE SECTION - TOP BAR */
/* ===================== */
.bands-section {
    width: 100vw;
    position: relative;
    padding: 14px 0;
    background: rgba(157, 78, 221, 0.08);
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
    overflow: hidden;
}

.bands-title {
    display: none;
}

.bands-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Edge fade effects */
.bands-scroll-container::before,
.bands-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.bands-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}

.bands-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}

.bands-scroll {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollBands 60s linear infinite;
    width: max-content;
}

@keyframes scrollBands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bands-scroll .band-name {
    font-size: 1rem;
    font-weight: 500;
    color: #cccccc !important;
    -webkit-text-fill-color: #cccccc !important;
    letter-spacing: 0.06em;
    padding: 8px 20px;
    margin: 0 6px;
    background: transparent !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
}

.bands-scroll .band-name:hover {
    background: rgba(157, 78, 221, 0.15) !important;
    border-color: var(--neon-green);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.25);
}

.band-separator {
    color: var(--neon-purple);
    font-size: 0.8rem;
    opacity: 0.4;
    margin: 0 5px;
}

/* ================== */
/* EMAIL SIGNUP CTA */
/* ================== */
.email-signup-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin-bottom: 30px;
    line-height: 1.7;
    letter-spacing: 0.03em;
    max-width: 400px;
}

.open-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid var(--neon-purple);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.open-form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.open-form-btn:hover {
    border-color: var(--neon-green);
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.4),
        0 0 60px rgba(157, 78, 221, 0.3);
    transform: translateY(-3px);
}

.open-form-btn:hover::before {
    opacity: 1;
}

.open-form-btn svg {
    transition: transform 0.3s ease;
}

.open-form-btn:hover svg {
    transform: translateX(5px);
}

/* Action Buttons Container */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.shows-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-green);
    background: transparent;
    border: 1px solid rgba(var(--green-rgb), 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.shows-btn:hover {
    border-color: var(--neon-green);
    color: #ffffff;
    background: rgba(var(--green-rgb), 0.15);
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.3),
        0 0 40px rgba(0, 255, 0, 0.1);
    transform: translateY(-2px);
}

.shows-btn svg {
    transition: transform 0.3s ease;
}

.shows-btn:hover svg {
    transform: scale(1.1);
}

/* ============ */
/* MODAL */
/* ============ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(180deg, var(--darker-purple) 0%, var(--dark-bg) 100%);
    border: 2px solid var(--neon-purple);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 0 60px rgba(157, 78, 221, 0.4),
        0 0 120px rgba(0, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    color: var(--neon-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.modal-close:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    transform: rotate(90deg);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 35px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-container {
    background: transparent;
    padding: 0 30px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
}

.modal .form-container::before {
    display: none;
}

.google-form {
    border: none;
    border-radius: 10px;
    width: 100%;
    min-height: 750px;
    display: block;
    background: rgba(255, 255, 255, 0.02);
}

.form-fallback {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666666;
    text-align: center;
}

.form-link {
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* ================ */
/* SOCIAL SECTION */
/* ================ */
.social-section {
    padding: 30px 20px 80px;
    text-align: center;
}

.teaser {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 35px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 
        0 0 25px rgba(0, 255, 0, 0.4),
        0 0 50px rgba(157, 78, 221, 0.2);
    transform: translateY(-5px);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.15);
}

/* ================ */
/* SIGNUP PAGE */
/* ================ */
.signup-page {
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.signup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-purple);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--neon-green);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.signup-logo-link {
    display: block;
}

.signup-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
    transition: all 0.3s ease;
}

.signup-logo:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.signup-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px 80px;
    text-align: center;
}

.signup-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-description {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.signup-form-container {
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.signup-form-iframe {
    border: none;
    border-radius: 10px;
    width: 100%;
    min-height: 800px;
    display: block;
}

/* ================ */
/* SHOWS PAGE */
/* ================ */
.shows-page {
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.shows-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

.shows-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* No shows message */
.no-shows-message {
    text-align: center;
    padding: 60px 30px;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
}

.no-shows-icon {
    color: var(--neon-purple);
    margin-bottom: 25px;
    opacity: 0.7;
}

.no-shows-message h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
    color: #ffffff;
}

.no-shows-message p {
    font-size: 1rem;
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.shows-signup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.shows-signup-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    transform: translateY(-2px);
}

/* Shows grid */
.shows-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.show-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.show-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.2);
}

.show-date {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--neon-green);
    text-transform: uppercase;
}

.show-info {
    flex: 1;
}

.show-venue {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    color: #ffffff;
}

.show-city {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 3px;
}

.show-time {
    font-size: 0.85rem;
    color: var(--neon-purple);
}

.show-details {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 8px;
    font-style: italic;
}

.ticket-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--neon-purple);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

/* Past shows */
.past-shows-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.past-shows-section.hidden {
    display: none;
}

.past-shows-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    color: #888888;
    text-align: center;
}

.shows-grid.past .show-card {
    opacity: 0.6;
}

.shows-grid.past .show-card:hover {
    opacity: 0.8;
}

/* =================== */
/* RESPONSIVE DESIGN */
/* =================== */
@media (max-width: 900px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .hero {
        padding: 20px;
    }
    
    .email-signup-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .main-grid {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .hero {
        padding: 15px;
    }
    
    .logo-container {
        width: 200px;
        height: 200px;
        margin-bottom: 25px;
    }
    
    h1.band-name {
        font-size: 2.2rem;
        letter-spacing: 0.12em;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .location {
        font-size: 0.9rem;
    }
    
    .bands-section {
        padding: 10px 0;
    }
    
    .bands-scroll .band-name {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
    
    .bands-scroll-container::before,
    .bands-scroll-container::after {
        width: 60px;
    }
    
    .email-signup-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .open-form-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .shows-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    /* Signup page responsive */
    .signup-header {
        padding: 15px 20px;
    }
    
    .signup-content {
        padding: 40px 20px 60px;
    }
    
    .signup-title {
        font-size: 1.8rem;
    }
    
    .signup-description {
        font-size: 0.95rem;
    }
    
    .signup-form-container {
        padding: 15px;
    }
    
    /* Shows page responsive */
    .shows-content {
        padding: 40px 20px 60px;
    }
    
    .shows-title {
        font-size: 1.8rem;
    }
    
    .show-card {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .show-date {
        font-size: 0.9rem;
    }
    
    .show-venue {
        font-size: 1.1rem;
    }
    
    .ticket-link {
        justify-self: start;
    }
    
    .modal-content {
        max-width: 95%;
        border-radius: 15px;
    }
    
    .modal-title {
        font-size: 1.3rem;
        padding: 30px 20px 15px;
    }
    
    .form-container {
        padding: 0 20px 20px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px 20px;
        min-height: auto;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .logo-container {
        width: 180px;
        height: 180px;
        margin-bottom: 25px;
    }
    
    h1.band-name {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }
    
    .tagline {
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }
    
    .location {
        font-size: 0.85rem;
    }
    
    .bands-section {
        padding: 8px 0;
    }
    
    .bands-scroll .band-name {
        font-size: 0.85rem;
        padding: 5px 14px;
        margin: 0 4px;
    }
    
    .bands-scroll-container::before,
    .bands-scroll-container::after {
        width: 30px;
    }
    
    .main-grid {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .email-signup-section {
        padding: 10px;
    }
    
    .section-title {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
    }
    
    .section-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .open-form-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .open-form-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .shows-btn {
        padding: 10px 22px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .shows-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Signup page responsive */
    .signup-header {
        padding: 12px 15px;
    }
    
    .signup-logo {
        width: 40px;
        height: 40px;
    }
    
    .back-link {
        font-size: 0.85rem;
    }
    
    .signup-content {
        padding: 30px 15px 50px;
    }
    
    .signup-title {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }
    
    .signup-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .signup-form-container {
        padding: 10px;
        border-radius: 10px;
    }
    
    .signup-form-iframe {
        min-height: 850px;
    }
    
    /* Shows page responsive */
    .shows-content {
        padding: 30px 15px 50px;
    }
    
    .shows-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .no-shows-message {
        padding: 40px 20px;
    }
    
    .no-shows-message h2 {
        font-size: 1.3rem;
    }
    
    .no-shows-message p {
        font-size: 0.9rem;
    }
    
    .show-card {
        padding: 18px 15px;
    }
    
    .modal {
        padding: 0;
        align-items: stretch;
    }
    
    .modal-content {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }
    
    .modal-title {
        font-size: 1.1rem;
        padding: 20px 15px 12px;
        flex-shrink: 0;
    }
    
    .modal-close {
        width: 38px;
        height: 38px;
        top: 12px;
        right: 12px;
    }
    
    .form-container {
        padding: 0 10px 20px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .google-form {
        min-height: 800px;
        height: auto;
    }
    
    .social-section {
        padding: 50px 15px 70px;
    }
    
    .social-links {
        gap: 18px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
    }
}
