/* /Components/Layout/DashboardLayout.razor.rz.scp.css */
/* Dashboard Layout Variables */
:root[b-5kno4n9sc5] {
    --bg-dark: #020617;
    /* slate-950 */
    --sidebar-bg: rgba(15, 23, 42, 0.4);
    /* slate-900/40 */
    --accent-red: #dc2626;
    /* red-600 */
    --text-white: #f8fafc;
    /* slate-50 */
    --text-slate: #64748b;
    /* slate-500 */
    --glass-border: rgba(255, 255, 255, 0.05);
}

.dashboard-layout[b-5kno4n9sc5] {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
    width: 100vw;
    /* Strict width */
}

/* Sidebar */
.sidebar[b-5kno4n9sc5] {
    width: 18rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    background-color: var(--sidebar-bg);
    backdrop-filter: blur(24px);
    border-right: 1px solid var(--glass-border);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Logo */
.logo[b-5kno4n9sc5] {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img[b-5kno4n9sc5] {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Nav Link Design Improvement */
.nav-links[b-5kno4n9sc5] {
    flex: 1;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item[b-5kno4n9sc5] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 0.75rem;
    color: #ffffff;
    /* pure white for best readability */
    text-decoration: none;
    font-size: 1rem;
    /* Larger text */
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-item:hover[b-5kno4n9sc5] {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateX(5px);
}

.nav-item.active[b-5kno4n9sc5] {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: #fff;
    border-left: 4px solid var(--accent-red);
    border-radius: 4px 0.75rem 0.75rem 4px;
    /* maintain right radius */
}

.nav-item i[b-5kno4n9sc5] {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-item.active i[b-5kno4n9sc5] {
    color: #f87171;
    /* Brighter red icon */
}

/* Logout */
.logout-section[b-5kno4n9sc5] {
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
}

.logout-btn[b-5kno4n9sc5] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: var(--text-slate);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
}

.logout-btn:hover[b-5kno4n9sc5] {
    color: white;
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

/* Main Content */
.main-content[b-5kno4n9sc5] {
    margin-left: 18rem;
    flex: 1;
    padding: 3rem;
    width: 100%;
    max-width: 100%;
}

/* Mobile Toggle */
.mobile-toggle[b-5kno4n9sc5] {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.sidebar-overlay[b-5kno4n9sc5] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.sidebar-overlay.show[b-5kno4n9sc5] {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar[b-5kno4n9sc5] {
        transform: translateX(-100%);
        width: 16rem;
    }

    .sidebar.open[b-5kno4n9sc5] {
        transform: translateX(0);
    }

    .main-content[b-5kno4n9sc5] {
        margin-left: 0;
        padding: 4rem 1rem 5rem 1rem;
        padding-top: calc(4rem + env(safe-area-inset-top));
        /* Handle notches */
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .mobile-toggle[b-5kno4n9sc5] {
        display: block;
    }

    .sidebar-overlay[b-5kno4n9sc5] {
        display: block;
    }

    .logo[b-5kno4n9sc5] {
        padding: 4rem 2rem 2rem 2rem;
        /* clear toggle btn */
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ghr773251q] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ghr773251q] {
    flex: 1;
}

.sidebar[b-ghr773251q] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ghr773251q] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ghr773251q]  a, .top-row[b-ghr773251q]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ghr773251q]  a:hover, .top-row[b-ghr773251q]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ghr773251q]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ghr773251q] {
        justify-content: space-between;
    }

    .top-row[b-ghr773251q]  a, .top-row[b-ghr773251q]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ghr773251q] {
        flex-direction: row;
    }

    .sidebar[b-ghr773251q] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ghr773251q] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ghr773251q]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ghr773251q], article[b-ghr773251q] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ghr773251q] {
    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-ghr773251q] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-r6fzu4udge] {
    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-r6fzu4udge] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-r6fzu4udge] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-r6fzu4udge] {
    font-size: 1.1rem;
}

.bi[b-r6fzu4udge] {
    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-r6fzu4udge] {
    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-r6fzu4udge] {
    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-r6fzu4udge] {
    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-r6fzu4udge] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-r6fzu4udge] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-r6fzu4udge] {
        padding-bottom: 1rem;
    }

    .nav-item[b-r6fzu4udge]  .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-r6fzu4udge]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-r6fzu4udge]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-r6fzu4udge] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-r6fzu4udge] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-r6fzu4udge] {
        display: none;
    }

    .nav-scrollable[b-r6fzu4udge] {
        /* 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-h3xq521a08],
.components-reconnect-repeated-attempt-visible[b-h3xq521a08],
.components-reconnect-failed-visible[b-h3xq521a08],
.components-pause-visible[b-h3xq521a08],
.components-resume-failed-visible[b-h3xq521a08],
.components-rejoining-animation[b-h3xq521a08] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-retrying[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-failed[b-h3xq521a08],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-h3xq521a08] {
    display: block;
}


#components-reconnect-modal[b-h3xq521a08] {
    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-h3xq521a08 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-h3xq521a08 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-h3xq521a08 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-h3xq521a08]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-h3xq521a08 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-h3xq521a08 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-h3xq521a08 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-h3xq521a08 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-h3xq521a08] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-h3xq521a08] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-h3xq521a08] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-h3xq521a08] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-h3xq521a08] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-h3xq521a08] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-h3xq521a08] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-h3xq521a08 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-h3xq521a08] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-h3xq521a08 {
    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/Dashboard.razor.rz.scp.css */
/* Dashboard specific styles */
.dashboard-header[b-4509gte9p2] {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}



/* Reset/Override for Dashboard context */
[b-4509gte9p2] * {
    box-sizing: border-box;
}

.dashboard-title[b-4509gte9p2] {
    font-size: 2.5rem;
    /* 4xl */
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.1;
}

.dashboard-subtitle[b-4509gte9p2] {
    color: var(--text-slate);
    font-weight: 500;
    margin-top: 5px;
}

.grid-layout[b-4509gte9p2] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .grid-layout[b-4509gte9p2] {
        display: flex;
        flex-direction: column;
    }

    .col-left[b-4509gte9p2],
    .col-right[b-4509gte9p2] {
        display: contents;
    }

    .profile-card[b-4509gte9p2] {
        order: 1;
        margin-bottom: 0;
    }

    .active-team-card[b-4509gte9p2] {
        order: 2;
    }

    .invites-card[b-4509gte9p2] {
        order: 3;
    }
}

/* Ensure grid items can shrink below content width */
.col-left[b-4509gte9p2],
.col-right[b-4509gte9p2] {
    min-width: 0;
}

/* Cards */
.glass-card[b-4509gte9p2] {
    background-color: rgba(15, 23, 42, 0.5);
    /* slate-900/50 */
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.profile-card[b-4509gte9p2] {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-container[b-4509gte9p2] {
    width: 7rem;
    height: 7rem;
    background-color: #1e293b;
    /* slate-800 */
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    padding: 0.25rem;
    border: 4px solid #334155;
    /* slate-700 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.avatar-img[b-4509gte9p2] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name[b-4509gte9p2] {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin: 0;
}

.profile-id[b-4509gte9p2] {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--text-slate);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.75rem;
}

/* Section Headers */
.section-label[b-4509gte9p2] {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--text-slate);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    display: block;
}

/* Invites */
.invite-item[b-4509gte9p2] {
    padding: 1.25rem;
    background-color: rgba(245, 158, 11, 0.1);
    /* amber-500/10 */
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.invite-item:hover[b-4509gte9p2] {
    border-color: #f59e0b;
}

.invite-team-name[b-4509gte9p2] {
    font-weight: 900;
    color: #f59e0b;
    /* amber-500 */
    font-size: 0.875rem;
    margin: 0 0 0.25rem;
    word-break: break-word;
    /* Fix overflow */
    overflow-wrap: anywhere;
    line-height: 1.2;
}

.invite-action[b-4509gte9p2] {
    font-size: 0.65rem;
    color: rgba(245, 158, 11, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Team Section */
.team-header[b-4509gte9p2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.team-name[b-4509gte9p2] {
    font-size: 3rem;
    /* 5xl */
    font-weight: 900;
    color: white;
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1;
}

.btn-invite[b-4509gte9p2] {
    background-color: #059669;
    /* emerald-600 */
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.2);
    transition: transform 0.1s;
    cursor: pointer;
}

.btn-invite:hover[b-4509gte9p2] {
    background-color: #047857;
    transform: scale(1.05);
}

.btn-invite:active[b-4509gte9p2] {
    transform: scale(0.95);
}

.btn-leave[b-4509gte9p2] {
    color: var(--text-slate);
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-leave:hover[b-4509gte9p2] {
    color: #ef4444;
    /* red-500 */
}

/* Table */
.team-table-container[b-4509gte9p2] {
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    overflow-x: auto;
    /* Enable horizontal scroll */
    background-color: rgba(2, 6, 23, 0.4);
    /* slate-950/40 */
    max-width: 100%;
    /* Ensure it doesn't overflow parent */
    -webkit-overflow-scrolling: touch;
}

.team-table[b-4509gte9p2] {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.team-table th[b-4509gte9p2] {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--text-slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-table td[b-4509gte9p2] {
    padding: 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    color: white;
    font-weight: 900;
}

.team-table tr:hover td[b-4509gte9p2] {
    background-color: rgba(255, 255, 255, 0.05);
}

.member-name-cell[b-4509gte9p2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .member-name-cell[b-4509gte9p2] {
        gap: 0.5rem;
        flex-direction: column;
        /* Stack avatar and name if really tight, or just keep tighter gap */
        align-items: flex-start;
    }
}

.badge-owner[b-4509gte9p2] {
    background-color: rgba(220, 38, 38, 0.1);
    color: #ef4444;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-member[b-4509gte9p2] {
    font-size: 0.65rem;
    font-weight: 900;
    color: #334155;
    /* slate-700 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-footer[b-4509gte9p2] {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.capacity-text[b-4509gte9p2] {
    font-size: 0.65rem;
    font-weight: 900;
    color: #475569;
    /* slate-600 */
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Input Group for Invite Link - Removed */

@media (max-width: 768px) {
    .dashboard-header[b-4509gte9p2] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .dashboard-title[b-4509gte9p2] {
        font-size: 1.75rem;
    }

    .grid-layout[b-4509gte9p2] {
        gap: 0.75rem;
    }

    .glass-card[b-4509gte9p2] {
        padding: 1rem;
        border-radius: 1rem;
    }

    .avatar-container[b-4509gte9p2] {
        width: 4rem;
        height: 4rem;
        margin-bottom: 0.75rem;
    }

    .profile-name[b-4509gte9p2] {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .profile-id[b-4509gte9p2] {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
        word-break: break-all;
    }

    .team-name[b-4509gte9p2] {
        font-size: 1.5rem;
        /* Checked: 1.5rem */
        word-break: break-word;
        line-height: 1.1;
    }

    .team-header[b-4509gte9p2] {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    /* Ensure table columns are visible or scroll is clear */
    .team-table th[b-4509gte9p2],
    .team-table td[b-4509gte9p2] {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .team-table th:last-child[b-4509gte9p2],
    .team-table td:last-child[b-4509gte9p2] {
        text-align: right;
    }

    /* Footer tweaks for small screens */
    .team-footer[b-4509gte9p2] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }

    .btn-leave[b-4509gte9p2] {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
        white-space: normal;
        line-height: 1.2;
    }

    .btn-invite[b-4509gte9p2] {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Fonts moved to app.css */

:root[b-himm6nlwdo] {
    --bg-dark: #0f0c29;
    --primary-gradient: linear-gradient(135deg, #FF0080 0%, #7928CA 100%);
    --secondary-gradient: linear-gradient(135deg, #0cebeb 0%, #20e3b2 100%);
    --accent-glow: #00f2ff;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

body[b-himm6nlwdo] {
    background-color: var(--bg-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1[b-himm6nlwdo],
h2[b-himm6nlwdo],
h3[b-himm6nlwdo],
h4[b-himm6nlwdo] {
    font-family: 'Montserrat', sans-serif;
}

/* Animations */
@keyframes fadeInUp-b-himm6nlwdo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-b-himm6nlwdo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseGlow-b-himm6nlwdo {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 128, 0);
    }
}

@keyframes marquee-b-himm6nlwdo {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes gradientShift-b-himm6nlwdo {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Branding Animations (Looping Join) */
@keyframes slideInLeft-b-himm6nlwdo {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    20% {
        transform: translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50px);
        opacity: 0;
    }
}

@keyframes slideInRight-b-himm6nlwdo {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    20% {
        transform: translateX(0);
        opacity: 1;
    }

    80% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(50px);
        opacity: 0;
    }
}

/* Common Classes */
.glass-card[b-himm6nlwdo] {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* High Visibility Neon Text */
.neon-text[b-himm6nlwdo] {
    color: #00f2ff;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.8), 0 0 40px rgba(0, 242, 255, 0.4);
    font-weight: 800;
}

.fade-in-up[b-himm6nlwdo] {
    animation: fadeInUp-b-himm6nlwdo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1[b-himm6nlwdo] {
    animation-delay: 0.1s;
}

.delay-2[b-himm6nlwdo] {
    animation-delay: 0.2s;
}

.delay-3[b-himm6nlwdo] {
    animation-delay: 0.3s;
}

.floating-logo[b-himm6nlwdo] {
    animation: float-b-himm6nlwdo 4s ease-in-out infinite;
}

.pulse-effect[b-himm6nlwdo] {
    animation: pulseGlow-b-himm6nlwdo 2s infinite;
}

/* Navbar - Fix Overlap */
.hero-section[b-himm6nlwdo] {
    position: relative;
    min-height: 100vh;
    padding-top: 200px;
    /* Increased for larger logo */
    padding-bottom: 60px;
    /* Reduced from 100px */
    background: #0f0c29;
    overflow: hidden;
    color: white;
}

/* New Header Structure - Branding Centered */
.hero-branding[b-himm6nlwdo] {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    pointer-events: none;
    /* Prevent blocking clicks in empty space */
}

.landing-logo[b-himm6nlwdo] {
    height: 90px;
    /* Increased Size */
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    margin-bottom: 0;
    pointer-events: auto;
    /* Re-enable clicks on logo if needed */
}

/* Split Branding Colors */
.logo-text-container[b-himm6nlwdo] {
    display: flex;
    align-items: center;
    pointer-events: auto;
    /* Re-enable clicks on text */
}

.brand-chie[b-himm6nlwdo] {
    font-size: 3rem;
    font-weight: 900;
    color: #00f2ff;
    /* Cyan matching Neon Text */
    text-transform: capitalize;
    /* Ensure "Chie" */
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    display: inline-block;
    animation: slideInLeft-b-himm6nlwdo 6s ease-in-out infinite;
}

.brand-box[b-himm6nlwdo] {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0080;
    /* Pink matching primary gradient */
    text-transform: capitalize;
    /* Ensure "Box" */
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
    display: inline-block;
    animation: slideInRight-b-himm6nlwdo 6s ease-in-out infinite;
}

/* Header Login Button */
.hero-login-btn[b-himm6nlwdo] {
    position: absolute;
    top: 40px;
    right: 5%;
    z-index: 1001;
    pointer-events: auto;
    /* Ensure clickable */
}

.login-btn-nav[b-himm6nlwdo] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 600;
    cursor: pointer;
    /* Explicit cursor */
}

/* Wave Bottom */
.wave-bottom[b-himm6nlwdo] {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg[b-himm6nlwdo] {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.wave-bottom .shape-fill[b-himm6nlwdo] {
    fill: #0f0c29;
}

/* About Section connects to wave so background should match wave fill if needed, 
   but wave fill #0f0c29 matches hero bg. 
   About section has linear gradient starting with #0f0c29. 
   So wave should probably be 'about section color' or transparent?
   Actually usually wave is section color on top of next section.
   Here it's inside hero, so it should transition to 'about section'.
   About starts with #0f0c29. Hero is #0f0c29. Use a different color or make wave unnecessary?
   Let's keep it but ensure it doesn't add huge block space. */

.wave-bottom .shape-fill[b-himm6nlwdo] {
    fill: #0f0c29;
    /* Matches hero and next section start, might be invisible? */
    /* If About has gradient, maybe we want it to blend. */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section[b-himm6nlwdo] {
        min-height: auto;
        padding-top: 30px;
        /* Reduced from 100px/160px drastically */
        padding-bottom: 20px;
        /* Reduced bottom gap */
        text-align: center;
    }

    .hero-branding[b-himm6nlwdo] {
        position: relative;
        /* Fix mobile overlap */
        top: auto;
        left: auto;
        padding-top: 0;
        /* Remove extra top padding */
        margin-bottom: 15px;
        flex-direction: row;
        /* Keep row on mobile as requested, just smaller */
        gap: 10px;
        pointer-events: auto;
        justify-content: center;
    }

    .brand-chie[b-himm6nlwdo],
    .brand-box[b-himm6nlwdo] {
        font-size: 2rem;
    }

    .landing-logo[b-himm6nlwdo] {
        height: 60px;
    }

    .hero-login-btn[b-himm6nlwdo] {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .wave-bottom svg[b-himm6nlwdo] {
        height: 60px;
        /* Smaller wave on mobile */
    }

    .about-section[b-himm6nlwdo] {
        padding-top: 40px;
        /* Reduced from 80 */
    }
}

/* Stay Connected */
.social-links[b-himm6nlwdo] {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-icon-btn[b-himm6nlwdo] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon-btn:hover[b-himm6nlwdo] {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.youtube:hover[b-himm6nlwdo] {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.whatsapp:hover[b-himm6nlwdo] {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.instagram:hover[b-himm6nlwdo] {
    background: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.6);
}

.facebook:hover[b-himm6nlwdo] {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.6);
}

/* Login Modal - YouTube Style Button */
.youtube-login-btn[b-himm6nlwdo] {
    background: #FF0000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    width: 100%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-login-btn:hover[b-himm6nlwdo] {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    color: white;
}

.hero-bg-animation[b-himm6nlwdo] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(121, 40, 202, 0.4), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 242, 255, 0.2), transparent 40%);
    z-index: 1;
}

.badge-pill[b-himm6nlwdo] {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #ff0000;
}

.hero-title[b-himm6nlwdo] {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle[b-himm6nlwdo] {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .hero-title[b-himm6nlwdo] {
        font-size: 2.8rem;
    }

    .hero-subtitle[b-himm6nlwdo] {
        font-size: 1.1rem;
    }

    .mobile-logo[b-himm6nlwdo] {
        width: 120px;
        margin-bottom: 20px;
    }
}

.btn-game-primary[b-himm6nlwdo] {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    background-size: 200% 200%;
    animation: gradientShift-b-himm6nlwdo 5s ease infinite;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-game-primary:hover[b-himm6nlwdo] {
    transform: scale(1.05);
    color: white;
}

.hero-main-logo[b-himm6nlwdo] {
    width: 300px;
    filter: drop-shadow(0 0 30px rgba(121, 40, 202, 0.6));
}

.floating-icon[b-himm6nlwdo] {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    animation: float-b-himm6nlwdo 3s ease-in-out infinite;
}

.icon-1[b-himm6nlwdo] {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.icon-2[b-himm6nlwdo] {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

.icon-3[b-himm6nlwdo] {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.winners-section[b-himm6nlwdo] {
    background: #141036;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.marquee-container[b-himm6nlwdo] {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.marquee-track[b-himm6nlwdo] {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-b-himm6nlwdo 20s linear infinite;
}

.winner-card-simple[b-himm6nlwdo] {
    min-width: 150px;
    padding: 10px;
    text-align: center;
}

.winner-img-large[b-himm6nlwdo] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.how-it-works-section[b-himm6nlwdo] {
    padding: 80px 0;
    background: #0f0c29;
}

.timeline-container[b-himm6nlwdo] {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container[b-himm6nlwdo]::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-glow);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-item[b-himm6nlwdo] {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item[b-himm6nlwdo]::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-dark);
    border: 3px solid #ff0080;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px #ff0080;
}

.left[b-himm6nlwdo] {
    left: 0;
}

.right[b-himm6nlwdo] {
    left: 50%;
}

.left[b-himm6nlwdo]::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.1);
}

.right[b-himm6nlwdo]::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
}

.right[b-himm6nlwdo]::after {
    left: -10px;
}

.timeline-item .content[b-himm6nlwdo] {
    padding: 20px;
    position: relative;
    border-radius: 6px;
}

.timeline-item h2[b-himm6nlwdo] {
    color: var(--accent-glow);
    font-size: 2.5rem;
    position: absolute;
    top: -10px;
    right: 20px;
    opacity: 0.3;
}

.timeline-item p[b-himm6nlwdo] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    position: relative;
}

@media screen and (max-width: 600px) {
    .timeline-container[b-himm6nlwdo]::after {
        left: 31px;
    }

    .timeline-item[b-himm6nlwdo] {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item[b-himm6nlwdo]::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
    }

    .left[b-himm6nlwdo]::after,
    .right[b-himm6nlwdo]::after {
        left: 21px;
    }

    .right[b-himm6nlwdo] {
        left: 0%;
    }
}

.game-footer[b-himm6nlwdo] {
    padding: 60px 0 100px;
    background: #050414;
    color: white;
}

.live-time-badge[b-himm6nlwdo] {
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00f2ff;
    color: #00f2ff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.about-section[b-himm6nlwdo] {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0c29 0%, #151030 100%);
    color: white;
}

.highlight[b-himm6nlwdo] {
    color: #ff0080;
    font-weight: 800;
}

.alert-custom[b-himm6nlwdo] {
    background: rgba(32, 227, 178, 0.15);
    border-left: 4px solid #20e3b2;
    color: #20e3b2;
    font-weight: 600;
}

.prize-badge[b-himm6nlwdo] {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: black;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    transform: rotate(-2deg);
}

.category-pill[b-himm6nlwdo] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: default;
    transition: all 0.2s;
    color: white;
}

.category-pill:hover[b-himm6nlwdo] {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.border-left-accent[b-himm6nlwdo] {
    border-left: 4px solid #20e3b2;
}

.border-left-danger[b-himm6nlwdo] {
    border-left: 4px solid #ff0080;
}

.feature-list li[b-himm6nlwdo] {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bg-white-10[b-himm6nlwdo] {
    background: rgba(255, 255, 255, 0.1);
}

.safety-item[b-himm6nlwdo] {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.2s;
}

.safety-item:hover[b-himm6nlwdo] {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.3);
}

.text-warning[b-himm6nlwdo] {
    color: #ff9800 !important;
}

.cta-section[b-himm6nlwdo] {
    padding: 100px 0;
    background: linear-gradient(0deg, #050414 0%, #151030 100%);
    color: white;
}

/* Login Modal */
.login-modal-backdrop[b-himm6nlwdo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn-b-himm6nlwdo 0.3s ease-out;
}

.login-modal-content[b-himm6nlwdo] {
    background: rgba(20, 20, 40, 0.95);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
    animation: scaleIn-b-himm6nlwdo 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-btn[b-himm6nlwdo] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover[b-himm6nlwdo] {
    color: white;
}

.modern-input[b-himm6nlwdo] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    padding: 12px;
}

.modern-input:focus[b-himm6nlwdo] {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00f2ff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    color: white;
}

.modern-btn[b-himm6nlwdo] {
    background: linear-gradient(135deg, #00f2ff 0%, #00c3ff 100%);
    border: none;
    color: black;
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    transition: transform 0.2s;
}

.modern-btn:hover[b-himm6nlwdo] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4);
}

@keyframes fadeIn-b-himm6nlwdo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn-b-himm6nlwdo {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Components/Pages/LastLiveStream.razor.rz.scp.css */
.live-stream-container[b-yqj87nyk9r] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
    padding-bottom: 5rem;
}

.text-gradient[b-yqj87nyk9r] {
    background: linear-gradient(to right, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title[b-yqj87nyk9r] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #334155;
    padding-bottom: 0.5rem;
}

/* Winners Table */
.badge[b-yqj87nyk9r] {
    font-weight: 600;
}

/* Questions Accordion */
.accordion-button[b-yqj87nyk9r]::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)[b-yqj87nyk9r] {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.transition-transform[b-yqj87nyk9r] {
    transition: transform 0.3s ease;
}

.rotate-180[b-yqj87nyk9r] {
    transform: rotate(180deg);
}

/* Options Grid */
.options-grid[b-yqj87nyk9r] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Always 2 columns as requested */
    gap: 1rem;
}

.option-card[b-yqj87nyk9r] {
    background-color: rgba(30, 41, 59, 0.5);
    /* slate-800/50 */
    border: 2px solid #334155;
    /* slate-700 */
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}

.option-label[b-yqj87nyk9r] {
    font-size: 0.8rem;
    font-weight: 900;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.option-text[b-yqj87nyk9r] {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1rem;
}

/* Green Border for Correct Answer */
.option-card.correct-answer[b-yqj87nyk9r] {
    border-color: #10b981;
    /* emerald-500 */
    background-color: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.option-card.correct-answer .option-label[b-yqj87nyk9r] {
    color: #10b981;
}

.option-card.correct-answer .option-text[b-yqj87nyk9r] {
    color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .options-grid[b-yqj87nyk9r] {
        gap: 0.75rem;
    }

    .option-card[b-yqj87nyk9r] {
        padding: 0.75rem;
    }

    .option-text[b-yqj87nyk9r] {
        font-size: 0.9rem;
    }

    .display-5[b-yqj87nyk9r] {
        font-size: 1.75rem;
    }
}
