/* _content/TR2025/Pages/Images.razor.rz.scp.css */
.gallery-grid[b-kwhna87np3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, 256px);
    gap: 1rem;
    justify-content: center;
}

.gallery-cell[b-kwhna87np3] {
    width: 256px;
    height: 256px;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,255,200,0.15);
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-cell:hover[b-kwhna87np3] {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0,255,200,0.4);
    }

    .gallery-cell img[b-kwhna87np3] {
        width: 256px;
        height: 256px;
        object-fit: cover; /* fills square while preserving shape */
        display: block;
    }
.accordion-toggle[b-kwhna87np3] {
    background: transparent;
    border: none;
    color: #00ff00;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 0.5rem 0;
    text-shadow: 0 0 5px #00ff00, 0 0 15px #00ff00;
    transition: all 0.2s ease;
}

    .accordion-toggle:hover[b-kwhna87np3] {
        color: #ffffff;
    }

.accordion-section[b-kwhna87np3] {
    margin-bottom: 1.5rem;
}
/* _content/TR2025/Pages/Movies.razor.rz.scp.css */
.video-row[b-3a631oain8] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-box[b-3a631oain8] {
    flex: 1 1 512px;
    max-width: 512px;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.15);
    backdrop-filter: blur(5px);
}
/* _content/TR2025/Shared/MainLayout.razor.rz.scp.css */
.navbar[b-gzyrkpp1wb] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    background: rgba(0, 255, 200, 0.05);
    box-shadow: 0 0 12px rgba(0, 255, 200, 0.15);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-item[b-gzyrkpp1wb] {
    color: #00ffc8;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    padding: 0.3rem 0.5rem;
    transition: color 0.3s ease;
}

    .nav-item[b-gzyrkpp1wb]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #00ffc8;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-item:hover[b-gzyrkpp1wb] {
        color: #ffffff;
        text-shadow: 0 0 5px #00ffc8;
    }

        .nav-item:hover[b-gzyrkpp1wb]::after {
            width: 100%;
            left: 0;
        }
