/* /Components/Layout/GameBoxSlide.razor.rz.scp.css */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ HERO SECTION ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.games-hero-section[b-rpo1xe4v62] {
    width: 100%;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 32px 0 28px;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background dots */
.games-hero-section[b-rpo1xe4v62]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 8, 68, 0.12) 0%, transparent 55%),
                      radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 55%),
                      radial-gradient(circle at 60% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.games-hero-inner[b-rpo1xe4v62] {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ HEADING AREA ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.games-hero-heading[b-rpo1xe4v62] {
    text-align: center;
    margin-bottom: 24px;
}

.games-hero-title[b-rpo1xe4v62] {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.hero-title-label[b-rpo1xe4v62] {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #f472b6;
    background: rgba(244, 114, 182, 0.12);
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 10px;
}

.games-hero-desc[b-rpo1xe4v62] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ CARDS GRID ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.games-hero-cards[b-rpo1xe4v62] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ SINGLE CARD ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-game-card[b-rpo1xe4v62] {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    will-change: transform;
}

.hero-game-card:hover[b-rpo1xe4v62] {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 8, 68, 0.25);
    border-color: rgba(255, 8, 68, 0.30);
}

/* Image wrapper */
.hero-card-image[b-rpo1xe4v62] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero-card-image img[b-rpo1xe4v62] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.hero-game-card:hover .hero-card-image img[b-rpo1xe4v62] {
    transform: scale(1.05);
}

/* Dark overlay */
.hero-card-overlay[b-rpo1xe4v62] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
}

/* Metacritic score badge */
.hero-card-score[b-rpo1xe4v62] {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    padding: 3px 9px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Card body */
.hero-card-body[b-rpo1xe4v62] {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.hero-card-name[b-rpo1xe4v62] {
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-card-meta[b-rpo1xe4v62] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card-genre[b-rpo1xe4v62] {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card-date[b-rpo1xe4v62] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
}

.hero-card-cta[b-rpo1xe4v62] {
    font-size: 11.5px;
    font-weight: 700;
    color: #f472b6;
    margin-top: auto;
    letter-spacing: 0.2px;
    transition: letter-spacing 0.15s ease;
}

.hero-game-card:hover .hero-card-cta[b-rpo1xe4v62] {
    letter-spacing: 0.5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
    .games-hero-cards[b-rpo1xe4v62] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-card-image[b-rpo1xe4v62] {
        aspect-ratio: 21 / 9;
    }

    .games-hero-title[b-rpo1xe4v62] {
        font-size: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .games-hero-cards[b-rpo1xe4v62] {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* /Components/Layout/HomeSidebar.razor.rz.scp.css */
/* ━━━━━━━━━━━━━━━━━━━ Sidebar Card ━━━━━━━━━━━━━━━━━━━ */
.sidebar-card[b-gj7vqbcvui] {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.07);
    position: relative;
}

.sidebar-card[b-gj7vqbcvui]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(100px 100px at 10% 0%, rgba(255, 8, 68, 0.07), transparent 60%),
                radial-gradient(140px 140px at 90% 10%, rgba(255, 177, 153, 0.10), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.sidebar-card > *[b-gj7vqbcvui] {
    position: relative;
    z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━ Title Row ━━━━━━━━━━━━━━━━━━━ */
.sidebar-title-row[b-gj7vqbcvui] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.w-title[b-gj7vqbcvui] {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: 0.2px;
}

/* ━━━━━━━━━━━━━━━━━━━ HOT Badge ━━━━━━━━━━━━━━━━━━━ */
.sidebar-badge[b-gj7vqbcvui] {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #ff0844 0%, #ff7a5c 60%, #ffb199 100%);
    padding: 3px 8px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(255, 8, 68, 0.28);
}

/* ━━━━━━━━━━━━━━━━━━━ Select ━━━━━━━━━━━━━━━━━━━ */
.sidebar-select[b-gj7vqbcvui] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #e3e6eb;
    border-radius: 10px;
    background-color: #ffffff;
    color: #111827;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* ━━━━━━━━━━━━━━━━━━━ Popular List ━━━━━━━━━━━━━━━━━━━ */
.sidebar-popular-list[b-gj7vqbcvui] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-game-item[b-gj7vqbcvui] {
    border-radius: 10px;
    overflow: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━ Game Row ━━━━━━━━━━━━━━━━━━━ */
.sidebar-game-link[b-gj7vqbcvui] {
    display: grid;
    grid-template-columns: 28px 44px 1fr 14px;
    align-items: center;
    gap: 8px;
    padding: 6px 6px;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    position: relative;
}

/* ━━━━━━━━━━━━━━━━━━━ Tooltip ━━━━━━━━━━━━━━━━━━━ */
.sidebar-game-link[b-gj7vqbcvui]::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #f1f5f9;
    font-size: 11.5px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 999;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tooltip arrow */
.sidebar-game-link[b-gj7vqbcvui]::before {
    content: "";
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    border: 5px solid transparent;
    border-left-color: #1e293b;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 999;
}

.sidebar-game-link:hover[b-gj7vqbcvui]::after,
.sidebar-game-link:hover[b-gj7vqbcvui]::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}


.sidebar-game-link:hover[b-gj7vqbcvui] {
    background: #f8fafc;
    border-color: #e8ecf2;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    transform: translateY(-1px);
}

/* ━━━━━━━━━━━━━━━━━━━ Rank Badge ━━━━━━━━━━━━━━━━━━━ */
.sidebar-rank[b-gj7vqbcvui] {
    font-weight: 700;
    font-size: 11px;
    color: #6b7280;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.sidebar-game-link:hover .sidebar-rank[b-gj7vqbcvui] {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border-color: #fecaca;
    color: #e11d48;
}

/* ━━━━━━━━━━━━━━━━━━━ Thumbnail ━━━━━━━━━━━━━━━━━━━ */
.sidebar-thumb[b-gj7vqbcvui] {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 9px;
    overflow: hidden;
}

.sidebar-thumb img[b-gj7vqbcvui] {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid #eef0f3;
    display: block;
}

/* ━━━━━━━━━━━━━━━━━━━ Content ━━━━━━━━━━━━━━━━━━━ */
.sidebar-content[b-gj7vqbcvui] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-title[b-gj7vqbcvui] {
    display: block;
    font-weight: 600;
    color: #0f172a;
    font-size: 12.5px;
    line-height: 1.35;
    letter-spacing: 0.05px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ━━━━━━━━━━━━━━━━━━━ Score Badge ━━━━━━━━━━━━━━━━━━━ */
.sidebar-score[b-gj7vqbcvui] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 2px 6px;
    border-radius: 999px;
    width: fit-content;
}

.sidebar-score .material-icons[b-gj7vqbcvui] {
    font-size: 12px;
    color: #f59e0b;
}

/* ━━━━━━━━━━━━━━━━━━━ Chevron ━━━━━━━━━━━━━━━━━━━ */
.sidebar-chevron[b-gj7vqbcvui] {
    font-size: 17px;
    color: #cbd5e1;
    transition: transform 0.15s ease, color 0.15s ease;
    line-height: 1;
}

.sidebar-game-link:hover .sidebar-chevron[b-gj7vqbcvui] {
    transform: translateX(2px);
    color: #94a3b8;
}

/* ━━━━━━━━━━━━━━━━━━━ Loading ━━━━━━━━━━━━━━━━━━━ */
.sidebar-loading[b-gj7vqbcvui] {
    padding: 8px 6px;
    color: #6b7280;
    font-size: 13px;
}

/* ━━━━━━━━━━━━━━━━━━━ Accessibility ━━━━━━━━━━━━━━━━━━━ */
.visually-hidden[b-gj7vqbcvui] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-x67nhtvxfe] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-x67nhtvxfe] {
    flex: 1;
}

.sidebar[b-x67nhtvxfe] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-x67nhtvxfe] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-x67nhtvxfe]  a, .top-row[b-x67nhtvxfe]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-x67nhtvxfe]  a:hover, .top-row[b-x67nhtvxfe]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-x67nhtvxfe]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-x67nhtvxfe] {
        justify-content: space-between;
    }

    .top-row[b-x67nhtvxfe]  a, .top-row[b-x67nhtvxfe]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-x67nhtvxfe] {
        flex-direction: row;
    }

    .sidebar[b-x67nhtvxfe] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-x67nhtvxfe] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-x67nhtvxfe]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-x67nhtvxfe], article[b-x67nhtvxfe] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-x67nhtvxfe] {
    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-x67nhtvxfe] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-z3x6eirsp4] {
    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-z3x6eirsp4] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-z3x6eirsp4] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-z3x6eirsp4] {
    font-size: 1.1rem;
}

.bi[b-z3x6eirsp4] {
    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-z3x6eirsp4] {
    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-z3x6eirsp4] {
    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-z3x6eirsp4] {
    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-z3x6eirsp4] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-z3x6eirsp4] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-z3x6eirsp4] {
        padding-bottom: 1rem;
    }

    .nav-item[b-z3x6eirsp4]  .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-z3x6eirsp4]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-z3x6eirsp4]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-z3x6eirsp4] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-z3x6eirsp4] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-z3x6eirsp4] {
        display: none;
    }

    .nav-scrollable[b-z3x6eirsp4] {
        /* 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-9fq13tjwah],
.components-reconnect-repeated-attempt-visible[b-9fq13tjwah],
.components-reconnect-failed-visible[b-9fq13tjwah],
.components-pause-visible[b-9fq13tjwah],
.components-resume-failed-visible[b-9fq13tjwah],
.components-rejoining-animation[b-9fq13tjwah] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-retrying[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-failed[b-9fq13tjwah],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9fq13tjwah] {
    display: block;
}


#components-reconnect-modal[b-9fq13tjwah] {
    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-9fq13tjwah 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-9fq13tjwah 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9fq13tjwah 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-9fq13tjwah]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-9fq13tjwah 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-9fq13tjwah {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-9fq13tjwah {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-9fq13tjwah {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-9fq13tjwah] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-9fq13tjwah] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-9fq13tjwah] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-9fq13tjwah] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-9fq13tjwah] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-9fq13tjwah] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-9fq13tjwah] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-9fq13tjwah 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-9fq13tjwah] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-9fq13tjwah {
    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/Home.razor.rz.scp.css */
.site-intro-header[b-ytn44yqy0f] {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.main-title[b-ytn44yqy0f] {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #2c3e50;
    line-height: 1.2;
}

.vso-quick-answer-text[b-ytn44yqy0f] {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 800px;
}

.can-i-run-it-widget[b-ytn44yqy0f] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #E91E63;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

.widget-header[b-ytn44yqy0f] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.widget-icon[b-ytn44yqy0f] {
    color: #E91E63;
    font-size: 32px;
}

.widget-title[b-ytn44yqy0f] {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.widget-subtitle[b-ytn44yqy0f] {
    color: #aaa;
    margin: 4px 0 0 0;
    font-size: 13px;
}

.widget-grid[b-ytn44yqy0f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-wrapper[b-ytn44yqy0f] {
    position: relative;
}

.input-label[b-ytn44yqy0f] {
    display: block;
    color: #ccc;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.label-icon[b-ytn44yqy0f] {
    font-size: 13px;
    vertical-align: middle;
    color: #E91E63;
}

.search-input[b-ytn44yqy0f] {
    width: 100%;
    padding: 11px 14px;
    background: #0f3460;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.search-input.selected[b-ytn44yqy0f] {
    border-color: #E91E63;
}

.clear-icon[b-ytn44yqy0f] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #E91E63;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
}

.dropdown-menu[b-ytn44yqy0f] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f3460;
    border: 1px solid #E91E63;
    border-radius: 8px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-top: 4px;
}

.dropdown-item[b-ytn44yqy0f] {
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s;
}

.dropdown-item:hover[b-ytn44yqy0f] {
    background: rgba(233, 30, 99, 0.2);
}

.dropdown-item-name[b-ytn44yqy0f] {
    font-weight: 600;
}

.dropdown-item-score[b-ytn44yqy0f] {
    color: #aaa;
    font-size: 11px;
    margin-left: 8px;
}

.summary-container[b-ytn44yqy0f] {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.summary-badges[b-ytn44yqy0f] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.summary-badge[b-ytn44yqy0f] {
    background: rgba(233, 30, 99, 0.2);
    border: 1px solid #E91E63;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.summary-badge-icon[b-ytn44yqy0f] {
    font-size: 13px;
    vertical-align: middle;
}

.filter-btn[b-ytn44yqy0f] {
    background: linear-gradient(135deg, #E91E63, #c2185b);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.filter-btn:hover[b-ytn44yqy0f] {
    opacity: 0.9;
}

.filter-btn-icon[b-ytn44yqy0f] {
    font-size: 18px;
}

.scanning-container[b-ytn44yqy0f] {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.scanning-header[b-ytn44yqy0f] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.scanning-text[b-ytn44yqy0f] {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.scanning-percentage[b-ytn44yqy0f] {
    color: #E91E63;
    font-size: 13px;
    font-weight: 700;
}

.progress-bar-bg[b-ytn44yqy0f] {
    width: 100%;
    background: #0f3460;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill[b-ytn44yqy0f] {
    height: 100%;
    background: linear-gradient(90deg, #E91E63, #ff4081);
    transition: width 0.2s;
}

.filter-active-container[b-ytn44yqy0f] {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-active-text[b-ytn44yqy0f] {
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
}

.filter-active-icon[b-ytn44yqy0f] {
    font-size: 16px;
    vertical-align: middle;
}

.clear-filter-btn[b-ytn44yqy0f] {
    background: transparent;
    border: 1px solid #aaa;
    color: #aaa;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.clear-filter-btn:hover[b-ytn44yqy0f] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.faq-section-wrapper[b-ytn44yqy0f] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-header[b-ytn44yqy0f] {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-icon[b-ytn44yqy0f] {
    color: #007bff;
}

.faq-list[b-ytn44yqy0f] {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.faq-dt[b-ytn44yqy0f] {
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

.faq-dd[b-ytn44yqy0f] {
    margin-bottom: 10px;
    margin-left: 20px;
}

.games-header-filtered[b-ytn44yqy0f] {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    border-left: 4px solid #4ade80;
    padding-left: 12px;
    color: #1a1a1a;
}

.games-header-filtered-icon[b-ytn44yqy0f] {
    vertical-align: middle;
    color: #4ade80;
    font-size: 22px;
}

.games-header-latest[b-ytn44yqy0f] {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    border-left: 4px solid #E91E63;
    padding-left: 12px;
}

.no-games-container[b-ytn44yqy0f] {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.no-games-icon[b-ytn44yqy0f] {
    font-size: 48px;
    color: #ccc;
}

.no-games-text[b-ytn44yqy0f] {
    color: #888;
    font-size: 16px;
    margin-top: 10px;
}

.show-all-btn[b-ytn44yqy0f] {
    background: #E91E63;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: opacity 0.2s;
}

.show-all-btn:hover[b-ytn44yqy0f] {
    opacity: 0.9;
}

.loading-more-container[b-ytn44yqy0f] {
    text-align: center;
    padding: 20px;
}

.game-card-meta-icon[b-ytn44yqy0f] {
    font-size: 11px;
    vertical-align: middle;
}

.score-good[b-ytn44yqy0f] {
    background: #27ae60;
}

.score-medium[b-ytn44yqy0f] {
    background: #f39c12;
}

.score-bad[b-ytn44yqy0f] {
    background: #e74c3c;
}

.game-card-meta-icon-score[b-ytn44yqy0f] {
    font-size: 11px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.8);
}
