/* /Pages/Index.razor.rz.scp.css */
*[b-lf7rkqoa8l] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section[b-lf7rkqoa8l] {
    height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero-section[b-lf7rkqoa8l]::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        animation: pulse-b-lf7rkqoa8l 4s ease-in-out infinite;
    }

@keyframes pulse-b-lf7rkqoa8l {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-content[b-lf7rkqoa8l] {
    position: relative;
    z-index: 1;
}

.band-logo[b-lf7rkqoa8l] {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.5));
}

.tagline[b-lf7rkqoa8l] {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons[b-lf7rkqoa8l] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary[b-lf7rkqoa8l], .btn-secondary[b-lf7rkqoa8l], .btn-play[b-lf7rkqoa8l], .btn-tickets[b-lf7rkqoa8l] {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary[b-lf7rkqoa8l] {
    background: #e63946;
    color: white;
}

    .btn-primary:hover[b-lf7rkqoa8l] {
        background: #d62839;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    }

.btn-secondary[b-lf7rkqoa8l] {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover[b-lf7rkqoa8l] {
        background: white;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

.container[b-lf7rkqoa8l] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section[b-lf7rkqoa8l] {
    min-height: 50vh;
}

h2[b-lf7rkqoa8l] {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
}

.about-section[b-lf7rkqoa8l] {
    background: #f8f9fa;
}

    .about-section p[b-lf7rkqoa8l] {
        font-size: 1.2rem;
        line-height: 1.8;
        text-align: center;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }

.music-section[b-lf7rkqoa8l] {
    background: white;
}

.music-grid[b-lf7rkqoa8l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.music-card[b-lf7rkqoa8l] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .music-card:hover[b-lf7rkqoa8l] {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.album-art[b-lf7rkqoa8l] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.music-card h3[b-lf7rkqoa8l] {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.music-card p[b-lf7rkqoa8l] {
    color: #666;
    margin-bottom: 1rem;
}

.btn-play[b-lf7rkqoa8l] {
    background: #e63946;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

    .btn-play:hover[b-lf7rkqoa8l] {
        background: #d62839;
        transform: scale(1.05);
    }

.shows-section[b-lf7rkqoa8l] {
    background: #1a1a2e;
    color: white;
}

    .shows-section h2[b-lf7rkqoa8l] {
        color: white;
    }

.shows-list[b-lf7rkqoa8l] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-item[b-lf7rkqoa8l] {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

    .show-item:hover[b-lf7rkqoa8l] {
        background: rgba(255,255,255,0.1);
    }

.show-date[b-lf7rkqoa8l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e63946;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

    .show-date .day[b-lf7rkqoa8l] {
        font-size: 2rem;
        font-weight: bold;
    }

    .show-date .month[b-lf7rkqoa8l] {
        font-size: 0.9rem;
        text-transform: uppercase;
    }

.show-details[b-lf7rkqoa8l] {
    flex: 1;
}

    .show-details h3[b-lf7rkqoa8l] {
        margin-bottom: 0.5rem;
    }

    .show-details p[b-lf7rkqoa8l] {
        opacity: 0.8;
    }

.btn-tickets[b-lf7rkqoa8l] {
    background: transparent;
    color: white;
    border: 2px solid #e63946;
    padding: 0.7rem 1.5rem;
}

    .btn-tickets:hover[b-lf7rkqoa8l] {
        background: #e63946;
    }

.contact-section[b-lf7rkqoa8l] {
    background: #f8f9fa;
    text-align: center;
}

.social-links[b-lf7rkqoa8l] {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-icon[b-lf7rkqoa8l] {
    padding: 1rem 2rem;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .social-icon:hover[b-lf7rkqoa8l] {
        background: #e63946;
        transform: translateY(-3px);
    }

.contact-email[b-lf7rkqoa8l] {
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 768px) {
    .band-logo[b-lf7rkqoa8l] {
        max-width: 90%;
    }

    .show-item[b-lf7rkqoa8l] {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons[b-lf7rkqoa8l] {
        flex-direction: column;
        align-items: stretch;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-m8btvfte0r] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-m8btvfte0r] {
    flex: 1;
}

.sidebar[b-m8btvfte0r] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-m8btvfte0r] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-m8btvfte0r]  a, .top-row[b-m8btvfte0r]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-m8btvfte0r]  a:hover, .top-row[b-m8btvfte0r]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-m8btvfte0r]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-m8btvfte0r] {
        display: none;
    }

    .top-row.auth[b-m8btvfte0r] {
        justify-content: space-between;
    }

    .top-row[b-m8btvfte0r]  a, .top-row[b-m8btvfte0r]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-m8btvfte0r] {
        flex-direction: row;
    }

    .sidebar[b-m8btvfte0r] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-m8btvfte0r] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-m8btvfte0r]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-m8btvfte0r], article[b-m8btvfte0r] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
