/* /Components/GameComponents/DownloadableComponent.razor.rz.scp.css */
.download-card[b-7rerg5oga4] {
    background: #354435;
    max-width: 400px;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .download-card:hover[b-7rerg5oga4] {
        box-shadow: 0 16px 40px rgba(119,171,96,0.25);
        transform: translateY(-3px);
    }

/* LEFT SIDE */
.download-header[b-7rerg5oga4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0; /* prevents overflow */
    max-width: 207px;
}

.file-icon[b-7rerg5oga4] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5c7e5c;
    color: #98db7b;
    flex-shrink: 0;
}

/* FIX: stack text properly */
.file-info[b-7rerg5oga4] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

    .file-info h3[b-7rerg5oga4] {
        margin: 0;
        color: #F4F6F2;
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .file-info a[b-7rerg5oga4] 
    {
        color: #b0d1cf;
        text-decoration: underline;
    }

        .file-info a:hover[b-7rerg5oga4] {
            color: #c2e9e7;
        }

.meta[b-7rerg5oga4] {
    margin: 0;
    color: #C7D0C2;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dot[b-7rerg5oga4] {
    margin: 0 6px;
    opacity: 0.6;
}

/* RIGHT SIDE */
.download-actions[b-7rerg5oga4] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.download-btn[b-7rerg5oga4] {
    background: #77AB60;
    color: white;
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
}

    .download-btn:hover[b-7rerg5oga4] {
        background: #669452;
        transform: translateY(-2px);
    }

/* MOBILE FIX */
@media (max-width: 600px) {
    .download-card[b-7rerg5oga4] {
        flex-direction: column;
        align-items: stretch;
    }

    .download-actions[b-7rerg5oga4] {
        justify-content: flex-end;
    }
}

.file-info[b-7rerg5oga4] {
    position: relative;
}

    /*.file-info:hover::after {
        content: attr(data-fullname);
        position: absolute;
        top: -2.2rem;
        left: 0;
        background: #1A221A;
        color: #F4F6F2;
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
        font-size: 0.85rem;
        white-space: nowrap;
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        z-index: 10;
    }*/
/* /Components/GameComponents/ImageSlider.razor.rz.scp.css */
.scroller-container[b-368nyyvlqc] {
    max-width: 100%;
    overflow: hidden;
    display: flex;
}

.scroller-inner[b-368nyyvlqc] {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll-sideways-b-368nyyvlqc 80s linear infinite;
}

.image-wrapper[b-368nyyvlqc] {
    position: relative;
    flex-shrink: 0;
}

    .image-wrapper img[b-368nyyvlqc] {
        width: 50vh;
        height: 100vh;
        object-fit: cover;
        display: block;
    }

    .image-wrapper[b-368nyyvlqc]::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( to bottom, rgba(26, 34, 26, 0) 70%, rgba(26, 34, 26, 0.4) 85%, #243224 100% );
    }

@keyframes scroll-sideways-b-368nyyvlqc {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.footer[b-4witc20x7g] {
    background: linear-gradient(180deg, #182018, #0F1510);
    border-top: 1px solid rgba(119,171,96,.2);
    color: #F4F6F2;
}

.footer-container[b-4witc20x7g] {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h2[b-4witc20x7g] {
    color: #77AB60;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p[b-4witc20x7g] {
    color: #C7D0C2;
    line-height: 1.8;
    max-width: 320px;
}

.footer-links[b-4witc20x7g],
.footer-social[b-4witc20x7g] {
    display: flex;
    flex-direction: column;
}

    .footer-links h3[b-4witc20x7g],
    .footer-social h3[b-4witc20x7g] {
        color: #F4F6F2;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-links a[b-4witc20x7g],
    .footer-social a[b-4witc20x7g] {
        color: #C7D0C2;
        text-decoration: none;
        margin-bottom: .75rem;
        transition: .25s ease;
        width: fit-content;
    }

        .footer-links a:hover[b-4witc20x7g],
        .footer-social a:hover[b-4witc20x7g] {
            color: #77AB60;
            transform: translateX(6px);
        }

.footer-bottom[b-4witc20x7g] {
    border-top: 1px solid rgba(119,171,96,.15);
    text-align: center;
    padding: 1.5rem;
    color: #9AA59A;
    font-size: .9rem;
}

/* Active NavLink */

.footer-links .active[b-4witc20x7g] {
    color: #77AB60;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 900px) {

    .footer-container[b-4witc20x7g] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .footer-container[b-4witc20x7g] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p[b-4witc20x7g] {
        margin: auto;
    }

    .footer-links[b-4witc20x7g],
    .footer-social[b-4witc20x7g] {
        align-items: center;
    }

        .footer-links a:hover[b-4witc20x7g],
        .footer-social a:hover[b-4witc20x7g] {
            transform: scale(1.05);
        }
}
/* /Components/Layout/Header.razor.rz.scp.css */
/* ---------- HEADER ---------- */

.site-header[b-bfy8lmo37o] {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(15,21,16,.88);
    border-bottom: 1px solid rgba(119,171,96,.15);
}

.nav-container[b-bfy8lmo37o] {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo[b-bfy8lmo37o] {
    height: 64px;
    width: 64px;
    flex-shrink: 0;
    display: block;
    transition: .3s;
    justify-self: start;
    margin: 0 1rem;
}

    .logo:hover[b-bfy8lmo37o] {
        transform: scale(1.1) translateY(-2px);
    }

    .logo:hover .logo-alt[b-bfy8lmo37o] {
        opacity: 1;
    }

.logo-base[b-bfy8lmo37o] {
    position: absolute;
    opacity: 1;
    object-fit: cover;
}

.logo-base:hover img[b-bfy8lmo37o] {
    opacity: 0;
}

.logo-alt[b-bfy8lmo37o] {
    position: absolute;
    opacity: 0;
    object-fit: cover;
}

.nav-links[b-bfy8lmo37o] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

    .nav-links a[b-bfy8lmo37o] {
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: .25s;
        position: relative;
    }

        .nav-links a:hover[b-bfy8lmo37o] {
            color: #77AB60;
        }

        .nav-links a.active[b-bfy8lmo37o] {
            color: #77AB60;
        }

        .nav-links a[b-bfy8lmo37o]::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: #77AB60;
            transition: .3s;
        }

        .nav-links a:hover[b-bfy8lmo37o]::after,
        .nav-links a.active[b-bfy8lmo37o]::after {
            width: 100%;
        }

.nav-button[b-bfy8lmo37o] {
    padding: .85rem 1.7rem;
    border-radius: 10px;
    /*background: #77AB60;*/
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .nav-button:hover[b-bfy8lmo37o] {
        /*background: #689655;*/
        transform: translateY(-2px);
    }

.download-container[b-bfy8lmo37o] {
    width: 400px;
    height: 82px;
    position: relative;
    flex-shrink: 0;
    justify-self: end;
}

.download-banner[b-bfy8lmo37o] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.download-button[b-bfy8lmo37o] {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: .85rem 1.7rem;
    border-radius: 10px;
    background: #77AB60;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.download-button:hover[b-bfy8lmo37o] {
    transform: translateY(calc(-50% - 2px));
}

/* ---------- BANNER ---------- */

.featured-banner[b-bfy8lmo37o] {
    position: relative;
    max-width: 1800px;
    height: 500px;
    margin: 3rem auto;
    overflow: hidden;
    border-radius: 24px;
    background: #182018;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.banner-image[b-bfy8lmo37o] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-mask-image: linear-gradient( to right, transparent 0%, black 18%, black 100% );
    mask-image: linear-gradient( to right, transparent 0%, black 18%, black 100% );
    transition: transform .6s;
}

.featured-banner:hover .banner-image[b-bfy8lmo37o] {
    transform: scale(1.03);
}

.banner-overlay[b-bfy8lmo37o] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5rem;
    max-width: 600px;
    background: linear-gradient( 90deg, rgba(15,21,16,.96) 0%, rgba(15,21,16,.82) 40%, rgba(15,21,16,.25) 70%, transparent 100% );
}

.featured-tag[b-bfy8lmo37o] {
    display: inline-block;
    width: fit-content;
    background: #77AB60;
    color: white;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-overlay h1[b-bfy8lmo37o] {
    font-size: clamp(3rem,5vw,5rem);
    color: white;
    margin-bottom: 1rem;
}

.banner-overlay p[b-bfy8lmo37o] {
    color: #C7D0C2;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.banner-buttons[b-bfy8lmo37o] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn-primary[b-bfy8lmo37o],
.btn-secondary[b-bfy8lmo37o] {
    text-decoration: none;
    font-weight: 700;
    padding: .95rem 1.9rem;
    border-radius: 10px;
    transition: .3s;
}

.btn-primary[b-bfy8lmo37o] {
    background: #77AB60;
    color: white;
}

    .btn-primary:hover[b-bfy8lmo37o] {
        background: #669452;
        transform: translateY(-2px);
    }

.btn-secondary[b-bfy8lmo37o] {
    border: 2px solid #77AB60;
    color: white;
}

    .btn-secondary:hover[b-bfy8lmo37o] {
        background: #77AB60;
    }

/* ---------- Responsive ---------- */

@media (max-width:900px) {

    .nav-container[b-bfy8lmo37o] {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links[b-bfy8lmo37o] {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .featured-banner[b-bfy8lmo37o] {
        height: 380px;
        margin: 2rem 1rem;
    }

    .banner-overlay[b-bfy8lmo37o] {
        padding: 2rem;
        max-width: 100%;
    }

        .banner-overlay h1[b-bfy8lmo37o] {
            font-size: 2.5rem;
        }

    .banner-image[b-bfy8lmo37o] {
        -webkit-mask-image: none;
        mask-image: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-rage5xxcat] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

.footer[b-rage5xxcat] {
    /*align-content: center;*/
    position: page;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 20vh;
    background-color: #243224;
}

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

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

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

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

@media (max-width: 640.98px) {
    .top-row[b-rage5xxcat] {
        justify-content: space-between;
    }

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

@media (min-width: 641px) {
    .page[b-rage5xxcat] {
        padding: 0;
        margin: 0;
        flex-direction: column;
    }

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

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

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

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

#blazor-error-ui[b-rage5xxcat] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-rage5xxcat] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-v05g2mv1c6] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-v05g2mv1c6] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-v05g2mv1c6] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-v05g2mv1c6] {
    font-size: 1.1rem;
}

.bi[b-v05g2mv1c6] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-v05g2mv1c6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-v05g2mv1c6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-v05g2mv1c6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-v05g2mv1c6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-v05g2mv1c6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-v05g2mv1c6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-v05g2mv1c6]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-v05g2mv1c6]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-v05g2mv1c6]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-v05g2mv1c6] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-v05g2mv1c6] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-v05g2mv1c6] {
        display: none;
    }

    .nav-scrollable[b-v05g2mv1c6] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-8cqxi4knjv],
.components-reconnect-repeated-attempt-visible[b-8cqxi4knjv],
.components-reconnect-failed-visible[b-8cqxi4knjv],
.components-pause-visible[b-8cqxi4knjv],
.components-resume-failed-visible[b-8cqxi4knjv],
.components-rejoining-animation[b-8cqxi4knjv] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-retrying[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-failed[b-8cqxi4knjv],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-8cqxi4knjv] {
    display: block;
}


#components-reconnect-modal[b-8cqxi4knjv] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-8cqxi4knjv 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-8cqxi4knjv 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-8cqxi4knjv 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-8cqxi4knjv]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-8cqxi4knjv 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-8cqxi4knjv {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-8cqxi4knjv {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-8cqxi4knjv {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-8cqxi4knjv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-8cqxi4knjv] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-8cqxi4knjv] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-8cqxi4knjv] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-8cqxi4knjv] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-8cqxi4knjv] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-8cqxi4knjv] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-8cqxi4knjv 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-8cqxi4knjv] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-8cqxi4knjv {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.about-page[b-o45rk2wqs7] {
    /*background: radial-gradient(circle at top,#77AB60 0%,transparent 35%), linear-gradient(180deg,#0F1510,#151D15);*/
}

.tag[b-o45rk2wqs7] {
    display: inline-block;
    background: #77AB60;
    color: white;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ---------- Stats ---------- */

.developer-stats[b-o45rk2wqs7] {
    max-width: 1100px;
    margin: -70px auto 100px;
    background: #1A221A;
    border: 1px solid rgba(119,171,96,.15);
    border-radius: 999px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.developer-stat h2[b-o45rk2wqs7] {
    font-size: 2.5rem;
    color: #77AB60;
    margin: 0;
}

.developer-stat h3[b-o45rk2wqs7] {
    color: #F4F6F2;
    margin: 0;
}

.developer-stat p[b-o45rk2wqs7] {
    color: #C7D0C2;
    margin-top: .4rem;
}

.stat-icon[b-o45rk2wqs7] {
    font-size: 2rem;
}

/* ---------- Cards ---------- */

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

.developer-card[b-o45rk2wqs7] {
    background: #1A221A;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(119,171,96,.15);
    transition: .35s;
    box-shadow: 0 20px 35px rgba(0,0,0,.35);
}

    .developer-card:hover[b-o45rk2wqs7] {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(119,171,96,.25);
    }

.card-icon[b-o45rk2wqs7] {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 18px;
    background: #243224;
    margin-bottom: 2rem;
}

.developer-card h2[b-o45rk2wqs7] {
    margin-bottom: 1rem;
    color: #F4F6F2;
}

.developer-card p[b-o45rk2wqs7] {
    color: #C7D0C2;
    line-height: 1.8;
}

.developer-card ul[b-o45rk2wqs7] {
    margin-top: 2rem;
    padding-left: 1.2rem;
}

.developer-card li[b-o45rk2wqs7] {
    color: #A7D38C;
    margin-bottom: .75rem;
}

.btn[b-o45rk2wqs7] {
    display: inline-block;
    padding: .9rem 1.8rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    color: white;
    max-width: 10vh;
}

.btn-primary[b-o45rk2wqs7] {
    background: #77AB60;
    color: white;
}

.a[b-o45rk2wqs7] {
    background: #77AB60;
    color: white;
}

.btn-primary:hover[b-o45rk2wqs7] {
    background: #669452;
    transform: scale(1.05);
}

.section[b-o45rk2wqs7] {
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

    .section h2[b-o45rk2wqs7] {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #a4a4a4;
    }

/* ---------- Contact ---------- */

.contact-section[b-o45rk2wqs7] {
    text-align: center;
}

.contact-grid[b-o45rk2wqs7] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-item[b-o45rk2wqs7] {
    background: #1A221A;
    padding: 2rem;
    border-radius: 18px;
    text-decoration: none;
    color: #F4F6F2;
    font-size: 1.2rem;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(119,171,96,.12);
}

    .contact-item:hover[b-o45rk2wqs7] {
        background: #243224;
        transform: translateY(-6px);
        color: white;
    }

    .contact-item span[b-o45rk2wqs7] {
        font-weight: 600;
    }

/* ---------- Hero tweaks ---------- */

.hero[b-o45rk2wqs7] {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1A221A; 
    color: #F4F6F2;
    padding: 2rem;
}

    .hero h1[b-o45rk2wqs7] {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        margin: 1rem 0;
    }

    .hero p[b-o45rk2wqs7] {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #C7D0C2;
        margin-bottom: 2rem;
    }

.hero-content[b-o45rk2wqs7] {
    max-width: 800px;
}

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

.game-card[b-o45rk2wqs7] {
    background: #1A221A;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    max-width: 500px;
}

    .game-card:hover[b-o45rk2wqs7] {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 18px 40px rgba(119, 171, 96, .35);
    }

.game-image[b-o45rk2wqs7] {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

    .game-image span[b-o45rk2wqs7] {
        background: rgba(0, 0, 0, .6);
        color: white;
        padding: .4rem .8rem;
        border-radius: 8px;
        font-weight: 700;
        margin-right: .25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .35rem;
    }

.game-content[b-o45rk2wqs7] {
    padding: 1.5rem;
}

    .game-content h3[b-o45rk2wqs7] {
        margin-bottom: .75rem;
        color: #F4F6F2;
    }

    .game-content p[b-o45rk2wqs7] {
        color: #C7D0C2;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .game-content a[b-o45rk2wqs7] {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        color: white;
    }

.genre[b-o45rk2wqs7] {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #A7D38C;
    font-weight: 600;
}

/* ---------- Mobile ---------- */

@media (max-width:900px) {

    .developer-stats[b-o45rk2wqs7] {
        border-radius: 30px;
        grid-template-columns: repeat(2,1fr);
        gap: 2rem;
        margin-top: -40px;
    }
}

@media (max-width:600px) {

    .developer-stats[b-o45rk2wqs7] {
        grid-template-columns: 1fr;
        padding: 2rem;
        color: #F4F6F2;
    }

    .developer-card[b-o45rk2wqs7] {
        background: #1A221A;
        border-radius: 16px;
        overflow: hidden;
        transition: all .3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    }

        .developer-card:hover[b-o45rk2wqs7] {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 18px 40px rgba(119, 171, 96, .35);
        }
}
/* /Components/Pages/Download.razor.rz.scp.css */
/* =========================
   DOWNLOADS PAGE
========================= */

.downloads-hero[b-kapwrsnkmc] {
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 900px;
    margin: auto;
}

    .downloads-hero h1[b-kapwrsnkmc] {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        color: #9ba894;
        margin-bottom: 1rem;
    }

    .downloads-hero p[b-kapwrsnkmc] {
        color: #7d8778;
        font-size: 1.1rem;
        line-height: 1.7;
    }

/* Grid layout for versions */
.downloads-grid[b-kapwrsnkmc] {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Optional metadata styling (if inside component) */
.download-meta[b-kapwrsnkmc] {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #C7D0C2;
    margin-bottom: 1rem;
}

.download-title[b-kapwrsnkmc] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F4F6F2;
    margin-bottom: 0.5rem;
}

.download-actions[b-kapwrsnkmc] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Primary download button */
.download-btn[b-kapwrsnkmc] {
    background: #77AB60;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all .2s ease;
}

    .download-btn:hover[b-kapwrsnkmc] {
        background: #669452;
        transform: scale(1.05);
    }

/* Secondary button (optional: changelog, etc.) */
.download-btn-secondary[b-kapwrsnkmc] {
    background: transparent;
    border: 2px solid #77AB60;
    color: #F4F6F2;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
}

    .download-btn-secondary:hover[b-kapwrsnkmc] {
        background: #77AB60;
    }

.alert[b-kapwrsnkmc] {
    display: flex;
    justify-self: center;
    align-self: center;

    padding-top: 6rem;
    padding-bottom: 8rem;
}
/* /Components/Pages/Games.razor.rz.scp.css */
body[b-ygjp0udg9w] {
    background: #1A221A;
    color: #F4F6F2;
}

/* HERO */

.hero[b-ygjp0udg9w] {
    min-height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

.games-page[b-ygjp0udg9w] {
    background: #1A221A;
}

.hero-content[b-ygjp0udg9w] {
    max-width: 900px;
}

.hero h1[b-ygjp0udg9w] {
    font-size: clamp(3rem,6vw,5rem);
    margin: 1rem 0;
}

.hero p[b-ygjp0udg9w] {
    color: #C7D0C2;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tag[b-ygjp0udg9w] {
    display: inline-block;
    background: #77AB60;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    font-weight: bold;
}

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

/* BUTTONS */

.btn[b-ygjp0udg9w] {
    display: inline-block;
    padding: .9rem 1.8rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    color: white;
}

.btn-primary[b-ygjp0udg9w] {
    background: #77AB60;
    color: white;
}

.a[b-ygjp0udg9w] {
    background: #77AB60;
    color: white;
}

.btn-primary:hover[b-ygjp0udg9w] {
    background: #669452;
    transform: scale(1.05);
}

.btn-secondary[b-ygjp0udg9w] {
    background: transparent;
    border: 2px solid #77AB60;
    color: #F4F6F2;
}

    .btn-secondary:hover[b-ygjp0udg9w] {
        background: #77AB60;
        color: white;
        transform: scale(1.05);
    }

/* SHOWCASE */

.game-showcase[b-ygjp0udg9w] {
    max-width: 1750px;
    margin: auto;
    padding: 8rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    position: relative;
    border-radius: 20px;
}

    .game-showcase:nth-child(even)[b-ygjp0udg9w] {
        grid-template-columns: 1.4fr 1fr;
    }

    .game-showcase:nth-child(even) .showcase-image[b-ygjp0udg9w] {
        order: 2;
    }

    .game-showcase:nth-child(even) .showcase-content[b-ygjp0udg9w] {
        order: 1;
    }

    .game-showcase:nth-child(odd)[b-ygjp0udg9w] {
        
        background: radial-gradient(circle at left, rgba(119,171,96,.08), transparent 60%);
    }

    .game-showcase:nth-child(even)[b-ygjp0udg9w] {
        background: radial-gradient(circle at right, rgba(119,171,96,.08), transparent 60%);
    }

    .game-showcase[b-ygjp0udg9w]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 15%;
        width: 70%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(119,171,96,.4), transparent);
    }

/* IMAGE */

.showcase-image[b-ygjp0udg9w] {
    display: flex;
    justify-content: center;
}

    .showcase-image img[b-ygjp0udg9w] {
        /*max-width: 650px;*/
        /*width: 65%;*/
        width: clamp(300px, 100%, 650px);
        height: clamp(200px, 100%, 400px);
        /*max-height: 400px;*/
        overflow: hidden;
        object-fit: cover;
        object-position: center;
        /*margin: auto auto 1.5rem;*/
        border-radius: 22px;
        box-shadow: 0 25px 60px rgba(0,0,0,.5);
        transition: .4s;
    }

        .showcase-image img:hover[b-ygjp0udg9w] {
            transform: scale(1.03);
        }

/* CONTENT */

.showcase-content[b-ygjp0udg9w] {
    position: relative;
    background: #182018;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
}

.game-number[b-ygjp0udg9w] {
    position: absolute;
    top: -25px;
    right: 20px;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(255,255,255,.03);
    pointer-events: none;
}

.genre[b-ygjp0udg9w] {
    display: inline-block;
    color: #A7D38C;
    margin-bottom: 1rem;
    font-weight: 600;
}

.showcase-content h2[b-ygjp0udg9w] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.showcase-content p[b-ygjp0udg9w] {
    color: #C7D0C2;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-buttons[b-ygjp0udg9w] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .game-showcase[b-ygjp0udg9w] {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5rem 2rem;
    }

        .game-showcase:nth-child(even) .showcase-image[b-ygjp0udg9w],
        .game-showcase:nth-child(even) .showcase-content[b-ygjp0udg9w] {
            order: initial;
        }

    .showcase-content[b-ygjp0udg9w] {
        padding: 2rem;
    }

        .showcase-content h2[b-ygjp0udg9w] {
            font-size: 2.2rem;
        }

    .game-number[b-ygjp0udg9w] {
        font-size: 6rem;
    }
}

.alert[b-ygjp0udg9w] {
    display: flex;
    justify-self: center;
    align-self: center;
}
/* /Components/Pages/home.razor.rz.scp.css */
.hero[b-pkws05qyn3] {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*background: radial-gradient(circle at top, #77AB60, transparent 45%), linear-gradient(135deg, #0F1510, #1A221A, #243224);*/
    color: #F4F6F2;
    padding: 2rem;
}

.slider-section[b-pkws05qyn3] {
    position: relative;
    overflow: hidden;
}

.slider-overlay-content[b-pkws05qyn3] {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

    .slider-overlay-content .btn[b-pkws05qyn3] {
        pointer-events: auto;
    }

.hero-content[b-pkws05qyn3] {
    max-width: 800px;
}

.hero h1[b-pkws05qyn3] {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin: 1rem 0;
}

.hero p[b-pkws05qyn3] {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #C7D0C2;
    margin-bottom: 2rem;
}

.tag[b-pkws05qyn3] {
    display: inline-block;
    background: #77AB60;
    color: white;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.btn[b-pkws05qyn3] {
    display: inline-block;
    padding: .9rem 1.8rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    color: white;
}

.btn-primary[b-pkws05qyn3] {
    background: #77AB60;
    color: white;
}

.btn-primary a[b-pkws05qyn3] {

    color: white;
}

.a[b-pkws05qyn3] {
    background: #77AB60;
    color: white;
}

.btn-primary:hover[b-pkws05qyn3] {
    background: #669452;
    transform: scale(1.05);
}

.btn-secondary[b-pkws05qyn3] {
    background: transparent;
    border: 2px solid #77AB60;
    color: #F4F6F2;
}

    .btn-secondary:hover[b-pkws05qyn3] {
        background: #77AB60;
        color: white;
        transform: scale(1.05);
    }

.section[b-pkws05qyn3] {
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

    .section h2[b-pkws05qyn3] {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #a4a4a4;
    }

.game-grid[b-pkws05qyn3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-content: center;
    justify-content: center;
}

.game-card[b-pkws05qyn3] {
    background: #1A221A;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    justify-self: center;
    align-self: start;
    max-width: 400px;
}

    .game-card:hover[b-pkws05qyn3] {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 18px 40px rgba(119, 171, 96, .35);
    }

.game-image[b-pkws05qyn3] {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

    .game-image span[b-pkws05qyn3] {
        background: rgba(0, 0, 0, .6);
        color: white;
        padding: .4rem .8rem;
        border-radius: 8px;
        font-weight: 700;
        margin-right: .25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .35rem;
    }

.game-content[b-pkws05qyn3] {
    padding: 1.5rem;
}

    .game-content h3[b-pkws05qyn3] {
        margin-bottom: .75rem;
        color: #F4F6F2;
    }

    .game-content p[b-pkws05qyn3] {
        color: #C7D0C2;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .game-content a[b-pkws05qyn3] {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        color: white;
    }

.genre[b-pkws05qyn3] {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #A7D38C;
    font-weight: 600;
}

.stats[b-pkws05qyn3] {
    background: #243224;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h2[b-pkws05qyn3] {
    font-size: 3rem;
    color: #77AB60;
    margin-bottom: .5rem;
}

.stat p[b-pkws05qyn3] {
    color: #C7D0C2;
}

.about[b-pkws05qyn3] {
    text-align: center;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
}

    .about h2[b-pkws05qyn3] {
        color: #a4a4a4;
        margin-bottom: 2rem;
    }

    .about p[b-pkws05qyn3] {
        color: #C7D0C2;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

body[b-pkws05qyn3] {
    background: #0F1510;
    color: #F4F6F2;
}

/* NavLink buttons */

.btn:link[b-pkws05qyn3],
.btn:visited[b-pkws05qyn3] {
    color: white;
    text-decoration: none;
}

.btn:hover[b-pkws05qyn3] {
    text-decoration: none;
}

.banner[b-pkws05qyn3] {

}

    .banner [b-pkws05qyn3]::after {
        background: linear-gradient( to bottom, rgba(26, 34, 26, 0) 70%, rgba(26, 34, 26, 0.4) 85%, #243224 100% );
    }
/* /Components/Pages/News.razor.rz.scp.css */
.news-page[b-hykvrqj8wd] {
    background: #0F1510;
    color: #F4F6F2;
    min-height: 100vh;
}

/* ---------- HERO ---------- */

.news-hero[b-hykvrqj8wd] {
    width: 100%;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: #1A221A;
}

.news-hero-content[b-hykvrqj8wd] {
    max-width: 800px;
}

.news-tag[b-hykvrqj8wd] {
    display: inline-block;
    background: #77AB60;
    color: white;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tag-container[b-hykvrqj8wd] {
    margin: auto;
    padding-inline-start: 1rem;
    padding-top: 1rem;
}

    .tag-container span[b-hykvrqj8wd] {
        background: #0F1510;
        color: white;
        padding: .4rem 1rem;
        border-radius: 8px;
        font-weight: 700;
        margin-right: 0.25rem;
    }

.news-hero h1[b-hykvrqj8wd] {
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 1rem 0;
    font-weight: 800;
}

.news-hero p[b-hykvrqj8wd] {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #C7D0C2;
}

/* ---------- SECTION ---------- */

.news-section[b-hykvrqj8wd] {
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

    .news-section h2[b-hykvrqj8wd] {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #a4a4a4;
    }

/* ---------- GRID ---------- */

.news-grid[b-hykvrqj8wd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    justify-items: start;
    align-items: start;
}

/* ---------- CARD ---------- */

.news-card[b-hykvrqj8wd] {
    display: block;
    text-decoration: none;
    background: #1A221A;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
    transition: all .3s ease;
    width: clamp(100px, 100%, 400px);
}

    .news-card:hover[b-hykvrqj8wd] {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 18px 40px rgba(119,171,96,.35);
    }

/* IMAGE */

.news-image[b-hykvrqj8wd] {
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

    .news-image span[b-hykvrqj8wd] {
        background: rgba(0,0,0,.6);
        color: white;
        padding: .4rem .8rem;
        border-radius: 8px;
        font-weight: 700;
    }

/* CONTENT */

.news-content[b-hykvrqj8wd] {
    padding: 1.5rem;
}

.news-date[b-hykvrqj8wd] {
    color: #A7D38C;
    font-weight: 600;
    display: block;
    margin-bottom: .75rem;
}

.news-content h3[b-hykvrqj8wd] {
    margin-bottom: .75rem;
    color: #F4F6F2;
}

.news-content p[b-hykvrqj8wd] {
    color: #C7D0C2;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* BUTTON */

.news-button[b-hykvrqj8wd] {
    display: inline-block;
    padding: .7rem 1.2rem;
    border-radius: 10px;
    background: #77AB60;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .news-button:hover[b-hykvrqj8wd] {
        background: #669452;
        transform: translateY(-2px);
    }
/* /Components/Pages/NewsPage.razor.rz.scp.css */
/* PAGE BACKGROUND */
body[b-sk1c75zn0f] {
    margin: 0;
    background: #0f1a12;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #e8f5e9;
}

/* PAGE WRAPPER */
.article-page[b-sk1c75zn0f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px;
}

/* HERO IMAGE */
.article-hero[b-sk1c75zn0f] {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

    .article-hero img[b-sk1c75zn0f] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
        transform: scale(1.02);
    }

.hero-overlay[b-sk1c75zn0f] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1), transparent );
}

    .hero-overlay h1[b-sk1c75zn0f] {
        margin: 0;
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
    }

/* META BAR */
.article-meta[b-sk1c75zn0f] {
    width: 100%;
    max-width: 900px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    padding-left: 6px;
}

    .article-meta .date[b-sk1c75zn0f] {
        color: #a8c3aa;
        font-size: 14px;
    }

    .article-meta .tag[b-sk1c75zn0f] {
        background: rgba(90, 180, 120, 0.15);
        color: #7bdc9a;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 12px;
    }

/* ARTICLE CARD (MAIN CONTENT) */
.article-card[b-sk1c75zn0f] {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(145deg, #122018, #0e1712);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   MARKDOWN CONTENT INTERIORS (FIXED FOR MARKDIG)
   ========================================================================== */
.article-body[b-sk1c75zn0f] {
    line-height: 1.7;
    font-size: 16px;
    color: #d9f2dd;
}

.article-body img[b-sk1c75zn0f] {
    border-radius: 20px;
}

[b-sk1c75zn0f] .article-body img {
    width: clamp(200px, 100%, 800px);
    object-fit: cover;
    object-position: center;
    margin: 1.5rem auto 1.5rem;
    display: flex;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,.5);
    transition: .4s;
}

    /* ==========================================================================
   HORIZONTAL RULES (FIXED FOR MARKDIG)
   ========================================================================== */
    .article-body hr[b-sk1c75zn0f] {
        border: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.15); /* A subtle white line to match your dark theme */
        margin: 32px 0;
        display: block;
    }

[b-sk1c75zn0f] .article-body hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 32px 0;
    display: block;
}

/* Use ::deep if this is in a scoped .razor.css file */
[b-sk1c75zn0f] .article-body ul,
[b-sk1c75zn0f] .article-body ol {
    padding-left: 28px !important;
    margin-top: 12px;
    margin-bottom: 12px;
}

[b-sk1c75zn0f] .article-body li {
    margin-bottom: 6px;
}

    /* Headings inside markdown */
    .article-body h1[b-sk1c75zn0f],
    .article-body h2[b-sk1c75zn0f],
    .article-body h3[b-sk1c75zn0f] {
        color: #ffffff;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    /* FORCE INDENTS ON ALL MARKDIG LIST TYPES */
    .article-body ul[b-sk1c75zn0f],
    .article-body ol[b-sk1c75zn0f] {
        padding-left: 28px !important; /* Forces the indent space */
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .article-body ul[b-sk1c75zn0f] {
        list-style-type: disc !important; /* Ensures bullet points show up */
    }

    .article-body ol[b-sk1c75zn0f] {
        list-style-type: decimal !important; /* Ensures numbers show up */
    }

    .article-body li[b-sk1c75zn0f] {
        margin-bottom: 6px;
        padding-left: 4px;
    }

    /* Links */
    .article-body a[b-sk1c75zn0f] {
        color: #7bdc9a;
        text-decoration: none;
    }

        .article-body a:hover[b-sk1c75zn0f] {
            text-decoration: underline;
        }

/* LOADING */
.page-loading[b-sk1c75zn0f] {
    color: #9fb8a2;
    text-align: center;
    padding: 60px;
}

[b-sk1c75zn0f] .btn {
    display: inline-block;
    padding: .9rem 1.8rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    color: white;
}

[b-sk1c75zn0f] .btn-primary {
    background: #77AB60;
    color: white;
}

[b-sk1c75zn0f] .btn-primary:hover {
    background: #669452;
    transform: scale(1.05);
}
