/* _content/Syr/Components/FaceDown/FaceDownCard.razor.rz.scp.css */
.placeholder-art.mana-night[b-tm5pie1y64] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background:
            linear-gradient(
                    180deg,
                    #02060d 0%,
                    #04101a 16%,
                    #07151a 30%,
                    #071a22 46%,
                    #041018 66%,
                    #02060d 100%
            );
}

.placeholder-top-slot[b-tm5pie1y64] {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.placeholder-bottom-slot[b-tm5pie1y64] {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.placeholder-top-slot .commander-random-button[b-tm5pie1y64] {
    pointer-events: auto;
}

.placeholder-bottom-slot .commander-label[b-tm5pie1y64] {
    text-align: center;
}

.sky-glow[b-tm5pie1y64] {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:

        /* top glow */
            radial-gradient(ellipse at 50% 6%,
            rgba(70, 110, 210, 0.07) 0%,
            rgba(55, 95, 185, 0.05) 18%,
            rgba(40, 85, 170, 0.04) 32%,
            rgba(30, 70, 150, 0.03) 46%,
            rgba(22, 60, 135, 0.02) 60%,
            transparent 78%),

                /* depth layers */
            radial-gradient(ellipse at 42% 22%,
            rgba(75, 120, 215, 0.045) 0%,
            rgba(45, 95, 170, 0.035) 34%,
            rgba(30, 75, 150, 0.025) 55%,
            transparent 76%),

            radial-gradient(ellipse at 68% 18%,
            rgba(60, 105, 190, 0.04) 0%,
            rgba(35, 80, 150, 0.03) 36%,
            rgba(25, 70, 135, 0.02) 56%,
            transparent 76%),

                /* LOWER AREA — now fully blue (no green at all) */
            radial-gradient(ellipse at 52% 60%,
            rgba(50, 110, 200, 0.05) 0%,
            rgba(40, 95, 180, 0.04) 28%,
            rgba(30, 80, 160, 0.025) 46%,
            rgba(20, 65, 140, 0.015) 62%,
            transparent 80%),

                /* mid blend */
            radial-gradient(ellipse at 50% 42%,
            rgba(35, 85, 160, 0.03) 0%,
            rgba(30, 75, 150, 0.025) 32%,
            rgba(25, 70, 140, 0.02) 52%,
            transparent 74%);

    animation: skyPulse-b-tm5pie1y64 12s ease-in-out infinite;
}

.starfield[b-tm5pie1y64] {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.star[b-tm5pie1y64] {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: rgba(255,255,255,var(--alpha));
    box-shadow:
            0 0 calc(var(--size) * 1px) rgba(255,255,255, calc(var(--alpha) * 0.6)),
            0 0 calc(var(--size) * 2px) rgba(255,255,255, calc(var(--alpha) * 0.3));
    transform: translate(0, 0);
    animation:
            starOrbit-b-tm5pie1y64 var(--dur) ease-in-out infinite,
            starTwinkle-b-tm5pie1y64 var(--twinkleDur) ease-in-out infinite;
    animation-delay: var(--delay), var(--twinkleDelay);
}

.star-bright[b-tm5pie1y64] {
    box-shadow:
            0 0 4px rgba(255,255,255,0.8),
            0 0 8px rgba(255,255,255,0.5),
            0 0 12px rgba(255,255,255,0.3);
}

@keyframes starOrbit-b-tm5pie1y64 {
    0%   { transform: translate(0px, 0px); }
    20%  { transform: translate(calc(var(--dx) * 0.45), calc(var(--dy) * 0.35)); }
    40%  { transform: translate(var(--dx), calc(var(--dy) * -0.25)); }
    60%  { transform: translate(calc(var(--dx) * -0.35), calc(var(--dy) * -0.8)); }
    80%  { transform: translate(calc(var(--dx) * -0.6), calc(var(--dy) * 0.25)); }
    100% { transform: translate(0px, 0px); }
}

@keyframes starTwinkle-b-tm5pie1y64 {
    0%, 100% { opacity: calc(var(--alpha) * 0.65); }
    50%      { opacity: var(--alpha); }
}

@keyframes skyPulse-b-tm5pie1y64 {
    0%, 100% { opacity: 0.78; }
    50% { opacity: 1; }
}

/* individual stars */
.s1[b-tm5pie1y64]  { --x: 9%;  --y: 11%; --size: 2px; --alpha: .52; --dx: 1px;  --dy: 1px;  --dur: 8.4s;  --delay: -1.2s; --twinkleDur: 4.8s; --twinkleDelay: -.8s; }
.s2[b-tm5pie1y64]  { --x: 24%; --y: 26%; --size: 2px; --alpha: .62; --dx: -2px; --dy: 1px;  --dur: 10.1s; --delay: -3.4s; --twinkleDur: 5.5s; --twinkleDelay: -2.1s; }
.s3[b-tm5pie1y64]  { --x: 41%; --y: 14%; --size: 3px; --alpha: .88; --dx: 1px;  --dy: -2px; --dur: 9.2s;  --delay: -1.8s; --twinkleDur: 3.8s; --twinkleDelay: -1.5s; }
.s4[b-tm5pie1y64]  { --x: 56%; --y: 21%; --size: 2px; --alpha: .46; --dx: 2px;  --dy: 1px;  --dur: 11.6s; --delay: -4.1s; --twinkleDur: 5.8s; --twinkleDelay: -2.4s; }
.s5[b-tm5pie1y64]  { --x: 77%; --y: 13%; --size: 2px; --alpha: .58; --dx: -1px; --dy: 2px;  --dur: 8.9s;  --delay: -2.7s; --twinkleDur: 4.7s; --twinkleDelay: -3.2s; }

.s6[b-tm5pie1y64]  { --x: 16%; --y: 35%; --size: 2px; --alpha: .55; --dx: 1px;  --dy: 1px;  --dur: 12.2s; --delay: -5.2s; --twinkleDur: 5.3s; --twinkleDelay: -1.3s; }
.s7[b-tm5pie1y64]  { --x: 34%; --y: 19%; --size: 2px; --alpha: .70; --dx: -1px; --dy: -1px; --dur: 9.8s;  --delay: -2.9s; --twinkleDur: 4.2s; --twinkleDelay: -2.7s; }
.s8[b-tm5pie1y64]  { --x: 69%; --y: 39%; --size: 3px; --alpha: .78; --dx: 2px;  --dy: -2px; --dur: 10.8s; --delay: -6.1s; --twinkleDur: 4.8s; --twinkleDelay: -1.9s; }
.s9[b-tm5pie1y64]  { --x: 83%; --y: 31%; --size: 2px; --alpha: .50; --dx: -2px; --dy: 1px;  --dur: 11.9s; --delay: -4.8s; --twinkleDur: 5.4s; --twinkleDelay: -2.8s; }
.s10[b-tm5pie1y64] { --x: 29%; --y: 45%; --size: 2px; --alpha: .40; --dx: 1px;  --dy: -1px; --dur: 13.0s; --delay: -7.2s; --twinkleDur: 6.0s; --twinkleDelay: -3.6s; }

.s11[b-tm5pie1y64] { --x: 18%; --y: 15%; --size: 1px; --alpha: .38; --dx: 1px;  --dy: 0px;  --dur: 9.7s;  --delay: -2.3s; --twinkleDur: 5.9s; --twinkleDelay: -1.1s; }
.s12[b-tm5pie1y64] { --x: 47%; --y: 18%; --size: 2px; --alpha: .72; --dx: 0px;  --dy: 1px;  --dur: 8.6s;  --delay: -3.7s; --twinkleDur: 4.4s; --twinkleDelay: -2.0s; }
.s13[b-tm5pie1y64] { --x: 63%; --y: 10%; --size: 1px; --alpha: .34; --dx: -1px; --dy: 1px;  --dur: 12.7s; --delay: -4.4s; --twinkleDur: 6.2s; --twinkleDelay: -2.9s; }
.s14[b-tm5pie1y64] { --x: 86%; --y: 22%; --size: 1px; --alpha: .30; --dx: 1px;  --dy: 1px;  --dur: 10.4s; --delay: -5.0s; --twinkleDur: 5.6s; --twinkleDelay: -3.1s; }
.s15[b-tm5pie1y64] { --x: 12%; --y: 48%; --size: 1px; --alpha: .32; --dx: 1px;  --dy: -1px; --dur: 11.1s; --delay: -6.3s; --twinkleDur: 6.4s; --twinkleDelay: -2.6s; }

.s16[b-tm5pie1y64] { --x: 39%; --y: 30%; --size: 1px; --alpha: .28; --dx: -1px; --dy: 0px;  --dur: 13.4s; --delay: -7.1s; --twinkleDur: 6.8s; --twinkleDelay: -4.0s; }
.s17[b-tm5pie1y64] { --x: 52%; --y: 33%; --size: 2px; --alpha: .42; --dx: 1px;  --dy: -1px; --dur: 9.4s;  --delay: -1.9s; --twinkleDur: 5.1s; --twinkleDelay: -1.8s; }
.s18[b-tm5pie1y64] { --x: 74%; --y: 27%; --size: 1px; --alpha: .36; --dx: -1px; --dy: 1px;  --dur: 12.1s; --delay: -3.3s; --twinkleDur: 6.3s; --twinkleDelay: -2.2s; }
.s19[b-tm5pie1y64] { --x: 22%; --y: 40%; --size: 1px; --alpha: .26; --dx: 0px;  --dy: 1px;  --dur: 14.0s; --delay: -5.6s; --twinkleDur: 7.0s; --twinkleDelay: -3.5s; }
.s20[b-tm5pie1y64] { --x: 57%; --y: 44%; --size: 1px; --alpha: .24; --dx: 1px;  --dy: 0px;  --dur: 13.1s; --delay: -6.8s; --twinkleDur: 6.7s; --twinkleDelay: -4.2s; }
.mana-symbol-center[b-tm5pie1y64] {
    position: absolute;
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%);
    width: 77%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.mana-symbol-hero[b-tm5pie1y64] {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.15;
    filter:
            drop-shadow(0 0 4px rgba(140, 255, 180, 0.4))
            drop-shadow(0 0 10px rgba(90, 255, 150, 0.25))
            drop-shadow(0 0 20px rgba(40, 180, 90, 0.15));
}

.face-up[b-tm5pie1y64] {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter:
            drop-shadow(0 0 4px rgba(140, 255, 180, 0.4))
            drop-shadow(0 0 10px rgba(90, 255, 150, 0.25))
            drop-shadow(0 0 20px rgba(40, 180, 90, 0.15));
}

.face-up[b-tm5pie1y64] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sideways[b-tm5pie1y64] {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transform: translate(-50%, -50%) rotate(-90deg) scale(1.34);
    transform-origin: center;
}
/* _content/Syr/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-im1rqw8vvu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-im1rqw8vvu] {
    flex: 1;
}

.sidebar[b-im1rqw8vvu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-im1rqw8vvu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-im1rqw8vvu]  a, .top-row[b-im1rqw8vvu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-im1rqw8vvu]  a:hover, .top-row[b-im1rqw8vvu]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-im1rqw8vvu]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-im1rqw8vvu] {
        justify-content: space-between;
    }

    .top-row[b-im1rqw8vvu]  a, .top-row[b-im1rqw8vvu]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .main-layout[b-im1rqw8vvu] {
        display: flex;
        flex-direction: row;
    }

    .sidebar-inner[b-im1rqw8vvu] {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .sidebar-inner[b-im1rqw8vvu] {
        width: 100%;
    }

    .top-row[b-im1rqw8vvu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-im1rqw8vvu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-im1rqw8vvu], article[b-im1rqw8vvu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-im1rqw8vvu] {
    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-im1rqw8vvu] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Syr/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-in9tnkben9] {
    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-in9tnkben9] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-in9tnkben9] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-in9tnkben9] {
    font-size: 1.1rem;
}

.bi[b-in9tnkben9] {
    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-in9tnkben9] {
    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-in9tnkben9] {
    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-in9tnkben9] {
    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-in9tnkben9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-in9tnkben9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-in9tnkben9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-in9tnkben9]  .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-in9tnkben9]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-in9tnkben9]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-in9tnkben9] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-in9tnkben9] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-in9tnkben9] {
        display: none;
    }

    .nav-scrollable[b-in9tnkben9] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Syr/Components/NewGameMenu.razor.rz.scp.css */
html[b-cdwtsoi6p3], body[b-cdwtsoi6p3], #app[b-cdwtsoi6p3] {
    height: 100%;
    margin: 0;
}
.ng-game-table[b-cdwtsoi6p3] {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px 275px;
    background:
            radial-gradient(circle at bottom, rgba(255, 120, 80, 0.18), transparent 25%),
            radial-gradient(circle at center, rgba(40, 40, 60, 0.5), transparent 20%),
            linear-gradient(180deg, #2a3147 0%, #35385a 45%, #4d3650 100%);
    color: white;
    overflow: visible;
    font-family: Arial, sans-serif;
    min-height: 0;
}
.ng-board-area[b-cdwtsoi6p3] {
    grid-column: 1;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 1fr 70px;
    height: 100vh;
    overflow: visible;
    min-width: 0;
}
.ng-right-panel[b-cdwtsoi6p3] {
    grid-column: 3;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    gap: 4px;
    padding: 0;
    background: rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 0;
}
.opponent-battlefield[b-cdwtsoi6p3],
.player-battlefield[b-cdwtsoi6p3] {
    position: relative;
    min-width: 0;
    width: 100%;
    margin: 0;
    justify-self: stretch;
    box-sizing: border-box;
    overflow: visible;
}
.opponent-battlefield[b-cdwtsoi6p3] {
    background-image: url('/images/wasteland.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.player-battlefield[b-cdwtsoi6p3] {
    background-image: url('/images/forest_city.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.ng-chat-panel[b-cdwtsoi6p3] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    height: 100%;

    background: #020617;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.ng-chat-log[b-cdwtsoi6p3] {
    position: relative;

    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;

    line-height: 1.1;
    padding: 2px 8px 8px 2px;
}
.ng-chat-line[b-cdwtsoi6p3] {
    overflow-wrap: break-word;
    margin-bottom: 3px;

    background: rgba(17, 24, 39, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;

    border-left: 3px solid #60a5fa;
    color: #e5e7eb;
}
.ng-chat-line.owner[b-cdwtsoi6p3] {
    border-left-color: #22c55e;
}
.ng-chat-line.system[b-cdwtsoi6p3] {
    border-left-color: #facc15;
}
.ng-chat-line.guest[b-cdwtsoi6p3] {
    border-left-color: #a78bfa;
}
.ng-chat-line.other[b-cdwtsoi6p3] {
    border-left-color: #60a5fa;
}
.ng-chat-prefix[b-cdwtsoi6p3] {
    color: #94a3b8;
    font-weight: 600;
}
.ng-chat-line.owner .ng-chat-prefix[b-cdwtsoi6p3] {
    color: #22c55e;
}
.ng-chat-line.system .ng-chat-prefix[b-cdwtsoi6p3] {
    color: #facc15;
}
.ng-chat-line.guest .ng-chat-prefix[b-cdwtsoi6p3] {
    color: #a78bfa;
}
.ng-chat-line.other .ng-chat-prefix[b-cdwtsoi6p3] {
    color: #38bdf8;
}
.ng-chat-name-highlight[b-cdwtsoi6p3] {
    color: #38bdf8;
    font-weight: bold;
}
.ng-chat-name-highlight.owner[b-cdwtsoi6p3] {
    color: #22c55e;
}
.ng-chat-name-highlight.guest[b-cdwtsoi6p3] {
    color: #a78bfa;
}
.ng-chat-name-highlight.other[b-cdwtsoi6p3] {
    color: #38bdf8;
}
.ng-chat-name-highlight.system[b-cdwtsoi6p3] {
    color: #facc15;
}
.ng-chat-select:hover[b-cdwtsoi6p3],
.ng-chat-options:hover[b-cdwtsoi6p3] {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    cursor: pointer;
}
.ng-chat-input-row[b-cdwtsoi6p3] {
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 4px;
    padding: 6px;
    background: rgba(0,0,0,0.7);
    border-top: 1px solid rgba(255,255,255,0.08);
    flex: 0 0 auto;
}
.ng-chat-input-row input[b-cdwtsoi6p3] {
    width: 100%;
    min-width: 0;
    border: none;
    padding: 6px;
    border-radius: 4px;
}
.ng-chat-input-row button[b-cdwtsoi6p3] {
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.ng-chat-tabs[b-cdwtsoi6p3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 0 0 auto;
}
.ng-chat-tabs button[b-cdwtsoi6p3] {
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
}
.ng-chat-tabs .active[b-cdwtsoi6p3] {
    background: rgba(255,255,255,0.2);
}
.ng-popup[b-cdwtsoi6p3] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: fit-content;
    max-width: 95vw;

    padding: 14px 26px;

    background: rgba(10, 10, 16, 0.85);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;

    font-size: 16px;
    color: white;
    text-align: center;

    box-shadow:
            0 0 20px rgba(0,0,0,0.6),
            0 0 8px rgba(120, 220, 255, 0.2);

    backdrop-filter: blur(6px);
    z-index: 50;

    box-sizing: border-box;
}
.ng-row-c[b-cdwtsoi6p3] {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.ng-column[b-cdwtsoi6p3] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-sizing: border-box;
}
.ng-title[b-cdwtsoi6p3] {
    flex: 0 0 auto;
    white-space: nowrap;
    margin-right: 2rem;
    align-self: center;
}
.ng-category[b-cdwtsoi6p3] {
    flex: 1 1 auto;
    min-width: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ng-category-button[b-cdwtsoi6p3] {
    flex: 0 0 auto;
}
.ng-player-list[b-cdwtsoi6p3] {
    flex: 0 0 220px;
    min-width: 160px;
    max-width: 160px;

    height: 15rem;
    padding: 6px;
    margin: 5px;

    overflow: hidden;

    background: rgba(0, 113, 161, 0.15);
    box-sizing: border-box;
    border-radius: 6px;
}
.ng-player-list > .ng-column[b-cdwtsoi6p3] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    min-width: 0;
}
.ng-options[b-cdwtsoi6p3] {
    flex: 1 1 auto;
    min-width: 0;

    padding: 6px;
    margin: 5px;

    background: rgba(0, 113, 161, 0.15);
    box-sizing: border-box;
    border-radius: 6px;
}
.ng-options .ng-column[b-cdwtsoi6p3] {
    gap: 8px;
}
.ng-player-list-button[b-cdwtsoi6p3] {
    margin: 3px;
}
.player-list[b-cdwtsoi6p3] {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;

    overflow-x: hidden;
    overflow-y: auto;
}
.player-list-name[b-cdwtsoi6p3] {
    display: block;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}
.player-list-title[b-cdwtsoi6p3] {
    flex: 0 0 auto;
    margin-bottom: 6px;
}
.ng-fit-content[b-cdwtsoi6p3] {
    flex: 0 0 auto;
    white-space: nowrap;
}
.ng-options .row-c[b-cdwtsoi6p3] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.ng-options + .row-c[b-cdwtsoi6p3],
.row-c.ng-fit-content[b-cdwtsoi6p3] {
    margin-top: 8px;
    gap: 8px;
    flex-wrap: wrap;
}
.edit-popup-overlay[b-cdwtsoi6p3] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
}
.edit-popup-box[b-cdwtsoi6p3] {
    background: #0f172a;
    color: #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(96, 165, 250, 0.2);
    animation: editPopupFadeIn-b-cdwtsoi6p3 0.2s ease-out;
    z-index: 61;
}
@keyframes editPopupFadeIn-b-cdwtsoi6p3 {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.edit-popup-header[b-cdwtsoi6p3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.edit-popup-title[b-cdwtsoi6p3] {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #93c5fd;
    text-transform: uppercase;
}
.edit-popup-input[b-cdwtsoi6p3] {
    width: 100%;
    margin-bottom: 16px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
}
.edit-popup-input:focus[b-cdwtsoi6p3] {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 1px rgba(96,165,250,0.4);
}
.edit-popup-actions[b-cdwtsoi6p3] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.info-button[b-cdwtsoi6p3] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    padding: 0;
    margin-right: 10px;

    font-size: 11px;
    font-weight: bold;

    color: #1a1200;
    background: linear-gradient(135deg, #fde68a, #facc15);

    border: none;
    cursor: pointer;
    box-sizing: border-box;
}
.info-button:hover[b-cdwtsoi6p3] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.45);
}
.ng-margin-right-5[b-cdwtsoi6p3] {
    margin-right: 5px;
}
.checkbox-container[b-cdwtsoi6p3] {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 2px;
    color: white;
    cursor: pointer;
}
.checkbox-container input[b-cdwtsoi6p3] {
    width: 16px;
    height: 16px;
    accent-color: #151219;
    cursor: pointer;

    background: #151219;
    color: white;
}
/* _content/Syr/Components/Pages/AddDecks/AddDeck.razor.rz.scp.css */
/* ── OVERLAY + MODAL SHELL ─────────────────────────────────── */



.deck-import-modal[b-smb191mzzb] {
    display: flex;
    flex-direction: column;

    width: min(1200px, 95vw);
    height: 85vh;

    background: linear-gradient(160deg, #1A0606 0%, #120404 100%);
    border: 1px solid var(--crimson);
    border-radius: 16px;
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.65),
            0 0 0 1px rgba(255, 255, 255, 0.03);

    overflow: hidden;
}

.deck-import-title[b-smb191mzzb] {
    padding: 14px 18px;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--parchment);
    border-bottom: 1px solid rgba(255, 0, 0, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.08));
}


/* ── IMPORT ROW (INPUT + BUTTONS) ──────────────────────────── */

.archidekt-import[b-smb191mzzb] {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.12);
}

.archidekt-import .form-control[b-smb191mzzb] {
    flex: 1;
}


/* ── PREVIEW LAYOUT ────────────────────────────────────────── */

.deck-list-panel-test[b-smb191mzzb],
.deck-import-preview[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.deck-import-preview[b-smb191mzzb] {
    overflow: hidden;
}

.deck-import-preview > div:first-child[b-smb191mzzb],
.deck-import-preview > div:nth-child(2)[b-smb191mzzb] {
    padding-left: 16px;
    padding-right: 16px;
    color: var(--parchment);
}


/* ── GRID ──────────────────────────────────────────────────── */

.deck-grid[b-smb191mzzb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 12px;
    padding: 12px 16px 16px 16px;

    flex: 1;
    min-height: 0;
    overflow-y: auto;
    align-items: start;
    user-select: none;
}

.deck-grid[b-smb191mzzb]::-webkit-scrollbar {
    width: 4px;
}

.deck-grid[b-smb191mzzb]::-webkit-scrollbar-track {
    background: rgba(139, 0, 0, 0.1);
}

.deck-grid[b-smb191mzzb]::-webkit-scrollbar-thumb {
    background: var(--crimson);
}


/* ── CARD ──────────────────────────────────────────────────── */

.deck-card[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    cursor: pointer;

    background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 4px;

    transition: all 0.2s ease;
}

.deck-card:hover[b-smb191mzzb] {
    border-color: var(--gold);
    transform: translateY(-2px) scale(1.03);
    box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(201, 168, 76, 0.2);
}

.deck-card.selected[b-smb191mzzb] {
    border-color: var(--crimson-light);
    box-shadow:
            0 0 0 1px var(--crimson-light),
            0 0 16px rgba(196, 30, 58, 0.3);
}


/* ── IMAGE ─────────────────────────────────────────────────── */

.deck-card-name[b-smb191mzzb] {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--parchment);
    line-height: 1.3;

    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    word-break: break-word;
    height: calc(1.3em * 2);
}

.deck-card-sub[b-smb191mzzb] {
    font-family: 'MPlantin', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: var(--parchment-dark);
    opacity: 0.5;
    margin-top: 2px;
    font-style: italic;
}


/* ── ACTION BUTTONS ────────────────────────────────────────── */

.deck-import-actions[b-smb191mzzb] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;

    margin-left: auto;
}

.deck-import-title.with-icon[b-smb191mzzb] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.deck-import-title.with-icon img[b-smb191mzzb] {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
}

.deck-owner[b-smb191mzzb] {
    font-size: 12px;
    line-height: 1.1;
    margin-top: 6px;
    margin-left: 4px;
}

.deck-name[b-smb191mzzb] {
    font-size: 16px;
    font-style: italic;
    line-height: 1;
    margin: 0;
}

.deck-header-row[b-smb191mzzb] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid rgba(255, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

.deck-import-title[b-smb191mzzb] {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 12px;
    background: #1f2937;
    line-height: 1;
    margin: 0;
}

.deck-meta[b-smb191mzzb] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.deck-meta-text[b-smb191mzzb] {
    display: flex;
    align-items: center;
}

.deck-import-row[b-smb191mzzb] {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.deck-import-overlay[b-smb191mzzb] {
    position: static;
    inset: unset;

    display: flex;
    align-items: stretch;
    justify-content: center;

    background: transparent;
    backdrop-filter: none;
}

.side-box[b-smb191mzzb] {
    width: 15vw;
    height: 85vh;
    background: #1f2937;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.commander-card[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.commander-card-img-container[b-smb191mzzb] {
    width: 100%;
    aspect-ratio: 2.5 / 3.5;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.commander-card-img-container > img[b-smb191mzzb],
.commander-card-img-container > .deck-card[b-smb191mzzb] {
    width: 100%;
    height: 100%;
    display: block;
}

.commander-card-img-container .card-img-container[b-smb191mzzb],
.commander-card-img-container .placeholder-art[b-smb191mzzb] {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
}

.commander-title[b-smb191mzzb] {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--parchment);

    text-align: center;

    padding-bottom: 6px;
    margin-bottom: 10px;

    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.mana-label[b-smb191mzzb] {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.6);

    margin-top: 8px;
    padding-top: 6px;

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.card-list-item:hover[b-smb191mzzb] {
    background: rgba(255,255,255,0.05);
}



.card-list-box[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.card-list[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    gap: 4px;

    min-height: 0;
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
}

.card-list-item[b-smb191mzzb] {
    display: flex;
    align-items: center;

    font-family: 'MPlantin', serif;
    font-size: 16px;
    color: var(--parchment);

    line-height: 1.35;
    min-height: 24px;

    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(255,255,255,0.03);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.option-label[b-smb191mzzb] {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.6);

    margin-top: 3px;
    padding-top: 3px;

    text-align: center;
}

.import-tokens-label[b-smb191mzzb] {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.6);

    margin-top: 6px;
    margin-bottom: 6px;
    padding-top: 9px;
    padding-bottom: 9px;

    text-align: center;
}

.border-top-options[b-smb191mzzb]{
    border-top: 1px solid rgba(255,255,255,0.08);
}

.checkbox-row[b-smb191mzzb] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.checkbox-row input[type="checkbox"][b-smb191mzzb] {
    transform: scale(1.3);
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-row label[b-smb191mzzb] {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.error-popup-overlay[b-smb191mzzb] {
    position: fixed;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.5);
}

.error-popup-modal[b-smb191mzzb] {
    background: #1e1e1e;
    color: white;

    padding: 20px;
    border-radius: 8px;
}

.mana-graph[b-smb191mzzb] {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;

    padding: 10px 0 6px;

    border-top: 1px solid rgba(201,168,76,0.15);
    margin-top: 10px;

    background: linear-gradient(
            to top,
            rgba(0,0,0,0.25),
            transparent
    );
}

.mana-bar[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mana-track[b-smb191mzzb] {
    width: 18px;
    height: 90px;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
}

.mana-fill[b-smb191mzzb] {
    width: 100%;
    min-height: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #d8b85a 0%, #8f6b1d 100%);
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.25);
}

.mana-symbol-wrap[b-smb191mzzb] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

.mana-symbol-img[b-smb191mzzb] {
    width: 18px;
    height: 18px;
    display: block;
    opacity: 0.95;
}

.mana-symbol-wrap.mana-white[b-smb191mzzb] {
    background: radial-gradient(circle at 30% 30%, #fff8d8 0%, #e6d9a8 65%, #bda96a 100%);
}

.mana-symbol-wrap.mana-blue[b-smb191mzzb] {
    background: radial-gradient(circle at 30% 30%, #9ed0ff 0%, #4a90d9 65%, #2d5f99 100%);
}

.mana-symbol-wrap.mana-black[b-smb191mzzb] {
    background: radial-gradient(circle at 30% 30%, #8a8a8a 0%, #4f4f4f 65%, #222 100%);
}

.mana-symbol-wrap.mana-red[b-smb191mzzb] {
    background: radial-gradient(circle at 30% 30%, #ff9a84 0%, #d94c3a 65%, #8f2318 100%);
}

.mana-symbol-wrap.mana-green[b-smb191mzzb] {
    background: radial-gradient(circle at 30% 30%, #9ce09b 0%, #4ea850 65%, #2d6c31 100%);
}

.mana-symbol-wrap.mana-colorless[b-smb191mzzb] {
    background: radial-gradient(circle at 30% 30%, #eeeeee 0%, #bdbdbd 65%, #7a7a7a 100%);
}



.mana-bar.mana-white .mana-fill[b-smb191mzzb] {
    background: linear-gradient(180deg, #fff8d8 0%, #cfc08a 100%);
}

.mana-bar.mana-blue .mana-fill[b-smb191mzzb] {
    background: linear-gradient(180deg, #9ed0ff 0%, #2d6fb8 100%);
}

.mana-bar.mana-black .mana-fill[b-smb191mzzb] {
    background: linear-gradient(180deg, #8a8a8a 0%, #2b2b2b 100%);
}

.mana-bar.mana-red .mana-fill[b-smb191mzzb] {
    background: linear-gradient(180deg, #ff9a84 0%, #a82e1f 100%);
}

.mana-bar.mana-green .mana-fill[b-smb191mzzb] {
    background: linear-gradient(180deg, #9ce09b 0%, #2f7a33 100%);
}

.mana-bar.mana-colorless .mana-fill[b-smb191mzzb] {
    background: linear-gradient(
            180deg,
            #f0f0f0 0%,
            #bdbdbd 50%,
            #6f6f6f 100%
    );
}

.commander-dropdown-wrap[b-smb191mzzb] {
    width: 100%;
    margin-top: 6px;
    padding: 4px;
}

.commander-dropdown[b-smb191mzzb] {
    width: 100%;
    padding: 8px 10px;

    background: #0f0f0f;
    color: #e8dcc0;

    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;

    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.05em;

    outline: none;
}

.commander-empty[b-smb191mzzb] {
    border: 1px solid rgba(201, 168, 76, 0.6);
    box-shadow: 0 0 0px rgba(201, 168, 76, 0.0);
    animation: commanderPulse-b-smb191mzzb 1.2s ease-in-out infinite;
    color: #a89c7a;
}

@keyframes commanderPulse-b-smb191mzzb {
    0% {
        box-shadow: 0 0 0px rgba(201, 168, 76, 0.0);
        border-color: rgba(201, 168, 76, 0.4);
    }
    50% {
        box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
        border-color: rgba(201, 168, 76, 0.9);
    }
    100% {
        box-shadow: 0 0 0px rgba(201, 168, 76, 0.0);
        border-color: rgba(201, 168, 76, 0.4);
    }
}

.commander-dropdown:focus[b-smb191mzzb] {
    border-color: #c9a84c;
}

.card-count[b-smb191mzzb] {
    color: #c9a84c;
    padding: 0 2px;
}

.deck-stats[b-smb191mzzb] {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card-list-search-input[b-smb191mzzb]{
    font-size: 14px;
    padding: 4px 6px;
    height: 20px;
    margin-top: 4px;
}

.import-help[b-smb191mzzb] {
    text-align: center;
    padding: 20px;
}

.import-title[b-smb191mzzb] {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.import-message[b-smb191mzzb] {
    margin-bottom: 15px;
    color: #ccc;
}

.import-subtitle[b-smb191mzzb] {
    font-weight: bold;
    margin-top: 10px;
}

.import-section ul[b-smb191mzzb] {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.import-section li[b-smb191mzzb] {
    margin: 3px 0;
}

.import-format[b-smb191mzzb] {
    display: inline-block;     /* 🔥 shrink to content width */
    width: fit-content;        /* ensures no full-width stretching */
    background: #111;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    text-align: left;
    white-space: pre;          /* preserve formatting */
}

.import-tip[b-smb191mzzb] {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

.import-format-row[b-smb191mzzb] {
    display: flex;
    justify-content: center;   /* centers the whole group */
    gap: 16px;                 /* space between formats */
    flex-wrap: wrap;           /* wraps nicely on small screens */
}

.import-grid[b-smb191mzzb] {
    display: flex;
    justify-content: center;   /* center all columns */
    align-items: flex-start;   /* align tops */
    gap: 30px;                 /* space between columns */
    flex-wrap: wrap;           /* wrap on smaller screens */
    text-align: center;
}

.import-block[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;          /* keeps columns readable */
}

.import-block ul[b-smb191mzzb] {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.import-block li[b-smb191mzzb] {
    margin: 3px 0;
}

.import-block[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;

    background: #1f2937;        /* 🔥 your color */
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #374151;  /* subtle border */
}

.import-block ul[b-smb191mzzb] {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.import-block li[b-smb191mzzb] {
    margin: 4px 0;
}

.alert-warning-animated[b-smb191mzzb] {
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.1); /* soft red background */
    border: 1px solid rgba(220, 53, 69, 0.4);
    display: inline-block;

    animation: pulseWarning-b-smb191mzzb 1.5s ease-in-out infinite;
}

/* subtle pulsing glow */
@keyframes pulseWarning-b-smb191mzzb {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 10px 4px rgba(220, 53, 69, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
}











/* ===== OVERLAY ===== */
.popup-overlay[b-smb191mzzb] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000;
}

/* ===== WINDOW ===== */
.import-list-window[b-smb191mzzb] {
    width: 550px;
    max-width: 90vw;

    background: #111827;
    border: 1px solid #2b3a55;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

    display: flex;
    flex-direction: column;
    overflow: hidden;

    animation: popupIn-b-smb191mzzb 0.18s ease-out;
}

/* ===== HEADER ===== */
.import-list-header[b-smb191mzzb] {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 18px;
    border-bottom: 1px solid #243047;
    background: #0f172a;
}

.import-list-title[b-smb191mzzb] {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

/* ===== BODY ===== */
.import-list-body[b-smb191mzzb] {
    padding: 18px;
}

.import-list-left[b-smb191mzzb] {
    display: flex;
    flex-direction: column;
}

.import-list-label[b-smb191mzzb] {
    color: #cbd5e1;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== TEXTAREA ===== */
.import-list-textarea[b-smb191mzzb] {
    width: 100%;
    height: 300px;
    resize: vertical;

    border-radius: 12px;
    border: 1px solid #334155;
    background: #0b1220;
    color: white;

    padding: 14px;
    font-size: 0.95rem;
    line-height: 1.45;
    outline: none;
}

.import-list-textarea:focus[b-smb191mzzb] {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
}

/* ===== FOOTER ===== */
.import-list-footer[b-smb191mzzb] {
    display: flex;
    justify-content: flex-end;

    padding: 14px 18px;
    border-top: 1px solid #243047;
    background: #0f172a;
}

/* ===== ANIMATION ===== */
@keyframes popupIn-b-smb191mzzb {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.deck-grid-wrapper[b-smb191mzzb] {
    position: relative;
    height: 100%;
}
/* _content/Syr/Components/Pages/DeckPreviews/DeckPreview.razor.rz.scp.css */
.deck-preview-overlay[b-6xmdod4zw9] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.deck-preview-mini[b-6xmdod4zw9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    width: 420px;
    max-width: 90vw;
    padding: 24px;

    background: #2a2a2a;
    color: #fff;
    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.deck-preview-mini img[b-6xmdod4zw9] {
    width: 260px;
    border-radius: 10px;
}

.deck-preview-info[b-6xmdod4zw9] {
    text-align: center;
}

.deck-preview-info .name[b-6xmdod4zw9] {
    font-size: 20px;
    font-weight: 600;
}

.deck-preview-info .owner[b-6xmdod4zw9] {
    font-size: 14px;
    color: #aaa;
}

.select-btn[b-6xmdod4zw9] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #4CAF50;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* _content/Syr/Components/Pages/Game/GameTable.razor.rz.scp.css */
.game-table[b-02pzvdc09t] {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px 275px;
    background:
            radial-gradient(circle at bottom, rgba(255, 120, 80, 0.18), transparent 25%),
            radial-gradient(circle at center, rgba(40, 40, 60, 0.5), transparent 20%),
            linear-gradient(180deg, #2a3147 0%, #35385a 45%, #4d3650 100%);
    color: white;
    overflow: visible;
    font-family: Arial, sans-serif;
}
.board-area[b-02pzvdc09t] {
    grid-column: 1;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 1fr 70px;
    height: 100vh;
    overflow: visible;
    min-width: 0;
}
.right-panel[b-02pzvdc09t] {
    grid-column: 3;
    display: grid;
    grid-template-rows:
        140px              /* opponent-info */
        minmax(0, 1fr)    /* chat-panel (fills remaining space) */
        36px               /* next-turn-panel */
        146px              /* top-controls */
        120px              /* bottom-commander-band */
        130px;             /* player-info */
    gap: 4px;
    padding: 0;
    background: rgba(0, 0, 0, 0.12);
    height: 100vh;
    min-height: 0;
}
.player-pile-top-options[b-02pzvdc09t] {
    grid-column: 3;
    display: grid;
    grid-template-rows: 36px minmax(0, 1fr);
    height: 100vh;
    min-height: 0;
    background: rgba(0, 0, 0, 0.12);
}
.pile-options-bar[b-02pzvdc09t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 4px 6px;
}
.right-panel-card-list[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
    gap: 2px;
    padding: 2px;
    min-height: 0;
    overflow-y: auto;
    background: #020617;
}
.opponent-battlefield[b-02pzvdc09t],
.player-battlefield[b-02pzvdc09t] {
    position: relative;
    min-width: 0;
    width: 100%;
    margin: 0;
    justify-self: stretch;
    box-sizing: border-box;
    overflow: visible;
}
.opponent-battlefield[b-02pzvdc09t] {
    background-image: url('/images/wasteland.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.player-battlefield[b-02pzvdc09t] {
    background-image: url('/images/forest_city.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.enemy-hand-corner[b-02pzvdc09t] {
    position: absolute;
    left: 12px;
    top: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.player-hand-corner[b-02pzvdc09t] {
    position: absolute;
    left: 12px;
    bottom: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.vertical-text[b-02pzvdc09t] {
    display: inline-block;
    width: 1ch;
    word-break: break-all;
    text-align: center;
    line-height: 1.1;
}
.vertical-text[b-02pzvdc09t] {
    display: inline-block;
    width: 1ch;
    word-break: break-all;
    text-align: center;
    line-height: 1;
    z-index: 2;
    position: relative;
}
.opponent-hand[b-02pzvdc09t] {
    align-items: flex-end;
}
.player-hand-floating[b-02pzvdc09t] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 500px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.player-hand-scroll[b-02pzvdc09t] {
    width: 75%;
    overflow: visible;
    pointer-events: auto;

    /* allow top overlap, hard-stop at left/right/bottom edges */
    clip-path: inset(-200px 0 0 0);
}
.player-hand[b-02pzvdc09t] {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0;
    height: 70px;
    overflow: visible;
    max-width: 100%;
    user-select: none;
}
.player-hand-card[b-02pzvdc09t] {
    flex: 0 0 auto;
    height: 148px;
    aspect-ratio: 63 / 88;
    transform: translateY(45px);   /* slight overlap onto battlefield */
    transition: transform 0.15s ease;
    z-index: 10;
}
.player-hand-card[b-02pzvdc09t]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    pointer-events: auto;
}
.player-hand-card:hover[b-02pzvdc09t] {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    transform: translateY(-40px);
}
.player-hand-card[b-02pzvdc09t],
.battle-card[b-02pzvdc09t] {
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}
.hand-overlay[b-02pzvdc09t] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.opponent-deck-label[b-02pzvdc09t] {
    font-size: 16px;
    line-height: 1;
    color: rgba(255,255,255,0.9);

    background: rgba(40, 40, 40, 0.85);
    padding: 3px 6px;
    border-radius: 6px;
    pointer-events: none;
}
.opponent-hand-count[b-02pzvdc09t] {
    background: rgba(40, 40, 40, 0.85);
    color: #c9a84c;
    padding: 3px 6px;
    border-radius: 6px;
}
.opponent-hand-placeholder[b-02pzvdc09t] {
    height: 120px;
    aspect-ratio: 63 / 88;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-sizing: border-box;

    position: relative;   /* add this */
    overflow: hidden;     /* add this */
}
.mini-card[b-02pzvdc09t] {
    height: 74px;
    aspect-ratio: 63 / 88;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}
.mini-card:hover[b-02pzvdc09t] {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    cursor: pointer;
}
.mini-card.large[b-02pzvdc09t] {
    width: 68px;
    height: 88px;
}
.battle-card[b-02pzvdc09t] {
    position: absolute;
    height: 33.333%;
    aspect-ratio: 63 / 88;
    user-select: none;
}
.battle-card:hover .card-inner[b-02pzvdc09t] {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    cursor: pointer;
}
.card-inner[b-02pzvdc09t],
.battle-card:not(:has(.card-inner))[b-02pzvdc09t] {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}
.card-inner.tapped[b-02pzvdc09t] {
    /* Move to the parent .battle-card instead
    this causes z-index updates to not work properly
    transform: rotate(90deg);
    transform-origin: center;*/
}
[b-02pzvdc09t] .player-hand-card-art.mana-night {
    border-radius: 6px !important;
    overflow: hidden;
}
[b-02pzvdc09t] .player-hand-card-art img.face-up {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.zone-label[b-02pzvdc09t] {
    position: absolute;
    left: -10px;
    transform: translateX(-100%);
    width: 70px;
    text-align: right;
    font-size: 11px;
    color: rgba(255,255,255,0.9);
}
.hand-controls[b-02pzvdc09t] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 14px;
    color: rgba(255,255,255,0.9);
    font-size: 20px;
}
.top-controls[b-02pzvdc09t],
.text-button-grid[b-02pzvdc09t],
.symbol-toolbar-grid[b-02pzvdc09t] {
    min-height: 0;
    box-sizing: border-box;
}
.text-button-grid[b-02pzvdc09t],
.symbol-toolbar-grid[b-02pzvdc09t],
.opponent-commander-grid[b-02pzvdc09t] {
    min-height: 0;
    max-height: 100%;
}
.next-turn-panel[b-02pzvdc09t] {
    display: flex;
    align-items: center;      /* vert center */
    justify-content: center;  /* hor center */

    padding: 6px;
    box-sizing: border-box;

    height: 100%;
}
.next-turn-btn[b-02pzvdc09t] {
    height: 32px;
    padding: 0 16px;

    border: none;
    border-radius: 6px;

    background: rgba(255,255,255,0.12);
    color: white;

    font-size: 14px;
    cursor: pointer;
}
.next-turn-btn[b-02pzvdc09t] {
    background: linear-gradient(180deg, #3a6cff, #1c3fa8);
    border: 1px solid rgba(120, 160, 255, 0.6);
}
.next-turn-btn:hover[b-02pzvdc09t] {
    background: rgba(255,255,255,0.25);
}
.opponent-info[b-02pzvdc09t],
.player-info[b-02pzvdc09t],
.chat-panel[b-02pzvdc09t],
.symbol-toolbar-grid[b-02pzvdc09t]{
    background: rgba(20, 20, 28, 0.55);
    border-left: 1px solid rgba(255,255,255,0.08);
}
.avatar[b-02pzvdc09t] {
    width: 70px;
    height: 90px;
    background: linear-gradient(180deg, #2e4630, #182118);
    border: 1px solid #111;
    border-radius: 4px;
}
.avatar.green[b-02pzvdc09t] {
    background: linear-gradient(180deg, #2ecb69, #15813f);
}
.life-box.player[b-02pzvdc09t] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    min-width: 0;
    box-sizing: border-box;
}
.life-stats[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    flex: 0 0 auto;
    margin-left: 0;
}
.player-name[b-02pzvdc09t] {
    font-size: 14px;
    margin-bottom: 8px;
    color: #ffb9c0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.life-controls[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: auto 22px;
    justify-content: start;
    align-items: center;
    gap: 6px;

    width: fit-content;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;

    margin-top: 2px;
    padding: 4px 3px;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.4);
}
.life-controls span[b-02pzvdc09t] {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 18px;
    line-height: 1;

    margin-right: 1px;
}
.life-buttons[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 22px;
}
.life-buttons button[b-02pzvdc09t] {
    width: 22px;
    height: 18px;
    padding: 0;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    background: rgba(255,255,255,0.12);
    color: white;
    font-size: 12px;
    line-height: 1;
    box-sizing: border-box;
}
.life-buttons button:hover[b-02pzvdc09t] {
    background: rgba(255,255,255,0.25);
}
.life-buttons button:active[b-02pzvdc09t] {
    transform: scale(0.95);
}
.life-controls.hp[b-02pzvdc09t] {
    background: linear-gradient(
            180deg,
            rgba(160, 20, 20, 0.9),
            rgba(90, 10, 10, 0.9)
    );

    border: 1px solid rgba(255, 80, 80, 0.5);

    cursor: pointer;
}
.life-controls.counter[b-02pzvdc09t] {
    background: linear-gradient(
            180deg,
            rgba(30, 30, 30, 0.95),
            rgba(5, 5, 5, 0.95)
    );

    border: 1px solid rgba(255,255,255,0.1);

    cursor: pointer;
}
.life-controls:first-of-type span[b-02pzvdc09t] {
    color: #ff6b6b;
    text-shadow:
            0 0 4px rgba(255, 60, 60, 0.6),
            0 0 2px rgba(255, 0, 0, 0.8);
}
.life-controls:last-of-type span[b-02pzvdc09t] {
    color: #ddd;
}
.chat-panel[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;

    background: #020617;
}
.chat-log[b-02pzvdc09t] {
    position: relative;

    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;

    line-height: 1.1;

    padding: 2px 8px 8px 2px;
}
.chat-line[b-02pzvdc09t] {
    overflow-wrap: break-word;
    margin-bottom: 3px;

    background: rgba(17, 24, 39, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;

    border-left: 3px solid #60a5fa;
    color: #e5e7eb;
}
.chat-line.owner[b-02pzvdc09t] {
    border-left-color: #22c55e;
}
.chat-line.system[b-02pzvdc09t] {
    border-left-color: #facc15;
}
.chat-line.guest[b-02pzvdc09t] {
    border-left-color: #a78bfa;
}
.chat-line.other[b-02pzvdc09t] {
    border-left-color: #60a5fa;
}
.chat-prefix[b-02pzvdc09t] {
    color: #94a3b8;
    font-weight: 600;
}
.chat-line.owner .chat-prefix[b-02pzvdc09t] {
    color: #22c55e;
}
.chat-line.system .chat-prefix[b-02pzvdc09t] {
    color: #facc15;
}
.chat-line.guest .chat-prefix[b-02pzvdc09t] {
    color: #a78bfa;
}
.chat-line.other .chat-prefix[b-02pzvdc09t] {
    color: #38bdf8;
}
.chat-name-highlight[b-02pzvdc09t] {
    color: #38bdf8;
    font-weight: bold;
}
.chat-name-highlight.owner[b-02pzvdc09t] {
    color: #22c55e;
}
.chat-name-highlight.guest[b-02pzvdc09t] {
    color: #a78bfa;
}
.chat-name-highlight.other[b-02pzvdc09t] {
    color: #38bdf8;
}
.chat-name-highlight.system[b-02pzvdc09t] {
    color: #facc15;
}
.chat-input-row[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 4px;
    padding: 6px;
    background: rgba(0,0,0,0.7);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.chat-input-row input[b-02pzvdc09t] {
    width: 100%;
    min-width: 0;
    border: none;
    padding: 6px;
    border-radius: 4px;
}
.chat-input-row button[b-02pzvdc09t] {
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.chat-tabs[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.chat-tabs button[b-02pzvdc09t] {
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
}
.chat-tabs .active[b-02pzvdc09t] {
    background: rgba(255,255,255,0.2);
}
.top-controls[b-02pzvdc09t] {
    display: flex;
    gap: 1px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    height: 100%;
    min-height: 0;
    overflow: hidden;
}
.symbol-toolbar-grid[b-02pzvdc09t] {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 32px;

    gap: 3px;
    padding: 3px;

    box-sizing: border-box;
    overflow: hidden;

    width: 70px;
    flex: 0 0 70px;

    background: rgba(20, 20, 28, 0.55);
    border-radius: 6px;

    align-self: flex-start;
}
.symbol-toolbar-grid button[b-02pzvdc09t] {
    width: 100%;
    height: 32px;

    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}
.text-button-grid[b-02pzvdc09t] {
    display: grid;
    align-content: start;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 32px;

    gap: 3px;
    padding-top: 3px;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;

    box-sizing: border-box;
    overflow: hidden;

    background: rgba(20, 20, 28, 0.55);
    border-radius: 6px;

    flex: 1 1 auto;
    min-width: 0;
}
.text-button-grid button[b-02pzvdc09t] {
    min-width: 0;
    height: 32px;
    padding: 0 10px;

    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
    font-size: 13px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    display: flex;
    align-items: center;
    justify-content: center;
}
.action-banner[b-02pzvdc09t] {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);

    padding: 14px 26px;

    background: rgba(10, 10, 16, 0.85);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;

    font-size: 16px;
    color: white;

    box-shadow:
            0 0 20px rgba(0,0,0,0.6),
            0 0 8px rgba(120, 220, 255, 0.2);

    backdrop-filter: blur(6px);

    z-index: 50;
    pointer-events: none;

    text-align: center;
}
.action-banner[b-02pzvdc09t] {
    opacity: 1;
    transition: opacity 0.2s ease;
}
@keyframes bannerPulse-b-02pzvdc09t {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.03); }
    100% { transform: translate(-50%, -50%) scale(1); }
}
.action-banner[b-02pzvdc09t] {
    animation: bannerPulse-b-02pzvdc09t 2.5s ease-in-out infinite;
}
.zone-stack[b-02pzvdc09t] {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.deck-zone[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.side-zones[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.zone-half[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zone-label-small[b-02pzvdc09t] {
    font-size: 10px;
    line-height: 1;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2px;
}
.zone-card[b-02pzvdc09t] {
    width: 70px;
    height: 90px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-sizing: border-box;

    position: relative;
    overflow: hidden;
}
.zone-card.small[b-02pzvdc09t] {
    width: 70px;
    height: 42px;
    font-size: 12px;
    box-sizing: border-box;
}
.zone-card:hover[b-02pzvdc09t] {
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    cursor: pointer;
}
.zone-card.exile[b-02pzvdc09t] {
    background: linear-gradient(180deg, #444, #222);
}
.zone-card.graveyard[b-02pzvdc09t] {
    background: linear-gradient(180deg, #3a2e46, #1a121f);
}
.zone-card > *:first-child[b-02pzvdc09t] {
    width: 100%;
    height: 100%;
}
.card-count[b-02pzvdc09t] {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 2;

    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: white;
    font-size: 12px;

    pointer-events: none;
}
.bottom-commander-band[b-02pzvdc09t] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    box-sizing: border-box;
    height: 100%;
    min-height: 0;

}
.commander-row[b-02pzvdc09t] {
    display: flex;
    align-items: center;
    gap: 6px;
}
.commander-left[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.commander-gametable-label[b-02pzvdc09t] {
    font-size: 11px;
    color: #ccc;
    margin-bottom: 4px;
}
.commander-row[b-02pzvdc09t] {
    display: flex;
    align-items: center;
    gap: 6px;
}
.opponent-commander-grid[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: 70px 70px;
    grid-template-rows: 50px 50px;
    gap: 6px;
}
.commander-slot[b-02pzvdc09t] {
    border-radius: 6px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 12px;
    color: white;
}
.commander-slot:hover[b-02pzvdc09t] {
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    cursor: pointer;
}

.player-commander-slot[b-02pzvdc09t] {
    position: relative;
    width: 56px;
    height: 78px;
    grid-row: 1 / span 2;
}

.player-commander-tax[b-02pzvdc09t] {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: white;
    font-size: 12px;
}
.tapped-slot[b-02pzvdc09t] {
    width: 70px;
    height: 50px;
}

.player-list-name:hover[b-02pzvdc09t],
.quick-button:hover[b-02pzvdc09t],
.chat-select:hover[b-02pzvdc09t],
.chat-options:hover[b-02pzvdc09t] {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.4);
    cursor: pointer;
}
.total-turns-label[b-02pzvdc09t] {
    font-size: 16px;
    line-height: 1;
    color: rgba(255,255,255,0.9);

    background: rgba(40, 40, 40, 0.85);
    padding: 3px 6px;
    border-radius: 6px;
    pointer-events: none;
    margin-right: 18px;
}
.player-hand-card-art.mana-night[b-02pzvdc09t] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background:
            linear-gradient(
                    180deg,
                    #02060d 0%,
                    #04101a 16%,
                    #07151a 30%,
                    #071a22 46%,
                    #041018 66%,
                    #02060d 100%
            );
}
.face-up[b-02pzvdc09t] {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter:
            drop-shadow(0 0 4px rgba(140, 255, 180, 0.4))
            drop-shadow(0 0 10px rgba(90, 255, 150, 0.25))
            drop-shadow(0 0 20px rgba(40, 180, 90, 0.15));
}
.player-hand-card-art[b-02pzvdc09t],
.player-hand-card-art img[b-02pzvdc09t] {
    pointer-events: none;
}
.row-c[b-02pzvdc09t] {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.column[b-02pzvdc09t] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-sizing: border-box;
}
.input-container[b-02pzvdc09t] {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}
.input-container input[b-02pzvdc09t] {
    width: 48px;
    height: 1.6rem;
    flex: 0 0 auto;
    text-align: center;
    box-sizing: border-box;
    background: #151219;
    color: white;
    border-radius: 8px;
}
input[type=number][b-02pzvdc09t]::-webkit-outer-spin-button,
input[type=number][b-02pzvdc09t]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number][b-02pzvdc09t] {
    -moz-appearance: textfield;
}
select[b-02pzvdc09t] {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    max-width: 100%;

    background: #151219;
    color: white;
}
.deck-zone[b-02pzvdc09t] {
    position: relative;
}
.deck-popup-overlay[b-02pzvdc09t] {
    position: fixed;
    inset: 0;
    z-index: 999;
}
.deck-popup[b-02pzvdc09t] {
    position: absolute;
    bottom: 0;
    right: 100%;

    margin-right: 10px;

    width: 180px;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 1000;

    display: flex;
    flex-direction: column;
    gap: 6px;
}
.commander-slot-popup[b-02pzvdc09t] {
    position: absolute;


    margin-right: 10px;

    width: 200px;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 6px;
}
.popup-title[b-02pzvdc09t] {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.popup-btn[b-02pzvdc09t] {
    background: #1f2937;
    color: white;
    border: none;
    padding: 6px 8px;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.15s;
}
.popup-btn:hover[b-02pzvdc09t] {
    background: #374151;
}
.popup-btn.danger:hover[b-02pzvdc09t] {
    background: #7f1d1d;
}
.dragging[b-02pzvdc09t] {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transform: scale(1.03);
    opacity: 0.96;
}
.drop-hover[b-02pzvdc09t] {
    outline: 2px solid #6ea8fe;
    background: rgba(110, 168, 254, 0.10);
}
.dragging.drag-over-valid[b-02pzvdc09t] {
    z-index: 100000;
}
.dragging[b-02pzvdc09t] {
    transform-origin: center center;
    transition: transform 120ms ease;
}
.dragging.drag-over-player-commander[b-02pzvdc09t] {
    transform: translate(-50%, -50%) scale(0.5);
}
.dragging.drag-over-deck[b-02pzvdc09t] {
    transform: translate(-50%, -50%) scale(0.7);
}
.dragging.drag-over-player-hand[b-02pzvdc09t] {
    transform: translate(-50%, -50%) scale(0.7);
}
.player-hand.drop-hover[b-02pzvdc09t] {
    opacity: 0;
}
.dragging.drag-over-graveyard[b-02pzvdc09t] {
    transform: translate(-50%, -50%) scale(0.50) rotate(-90deg);
}
.dragging.drag-over-exile[b-02pzvdc09t] {
    transform: translate(-50%, -50%) scale(0.50) rotate(-90deg);
}
.draw-container[b-02pzvdc09t] {
    display: flex;
}
.draw-container input[b-02pzvdc09t] {
    width: 60px;
    border-right: none;
    border-radius: 6px 0 0 6px;
}
.draw-container button[b-02pzvdc09t] {
    border-radius: 0 6px 6px 0;
}


.player-pile-panel[b-02pzvdc09t] {
    height: 100%;
    min-height: 0;
    display: grid;

    /* FIXED */
    grid-template-rows: auto auto auto auto auto minmax(0, 1fr);

    gap: 6px;
    padding: 8px;
    box-sizing: border-box;

    background: linear-gradient(180deg, #101323, #050918);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
}

.pile-header[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 32px;
    gap: 6px;
}

.pile-header-select[b-02pzvdc09t],
.pile-close-btn[b-02pzvdc09t],
.pile-search[b-02pzvdc09t],
.pile-card-type[b-02pzvdc09t],
.pile-filter-row button[b-02pzvdc09t] {
    background: rgba(3, 8, 22, 0.92);
    color: white;
    border: 1px solid rgba(140, 170, 210, 0.35);
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(120, 190, 255, 0.08);
}

.pile-header-select[b-02pzvdc09t] {
    padding: 0 6px;
    font-size: 12px;
    font-weight: 700;
}

.pile-close-btn[b-02pzvdc09t] {
    cursor: pointer;
    font-weight: 800;
}

.pile-filter-row[b-02pzvdc09t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.pile-filter-row button[b-02pzvdc09t] {
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.pile-filter-row button:hover[b-02pzvdc09t],
.pile-close-btn:hover[b-02pzvdc09t] {
    background: rgba(30, 70, 110, 0.95);
}

.pile-expand-btn[b-02pzvdc09t] {
    border: 0;
    background: transparent;
    color: #d7f7ff;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 0     2px;
}

.pile-search[b-02pzvdc09t] {
    padding: 0 8px;
    font-weight: 700;
    color: Orange;
}

.pile-search[b-02pzvdc09t]::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.pile-card-type[b-02pzvdc09t] {
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-weight: 800;
    color: #c7fff1;

    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pile-filter-select[b-02pzvdc09t] {
    background: rgba(3, 8, 22, 0.92);
    color: white;
    border: 1px solid rgba(140, 170, 210, 0.35);
    border-radius: 6px;
    padding: 4px 6px;
    font-weight: 700;
    font-size: 12px;
}
/* _content/Syr/Components/Pages/Lobby.razor.rz.scp.css */
.deck-grid[b-pkm27lr5oh] {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    overflow-y: auto;
    align-items: start;
}

.deck-grid[b-pkm27lr5oh]::-webkit-scrollbar { width: 4px; }
.deck-grid[b-pkm27lr5oh]::-webkit-scrollbar-track { background: rgba(139,0,0,0.1); }
.deck-grid[b-pkm27lr5oh]::-webkit-scrollbar-thumb { background: var(--crimson); }

.deck-card[b-pkm27lr5oh] {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.25s;
}

.deck-card[b-pkm27lr5oh] {
    background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 4px;
    transition: all 0.2s ease;
}

.selected-deck-card[b-pkm27lr5oh] {
    background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
    padding: 8px;
    transition: all 0.2s ease;
}

.deck-card:hover[b-pkm27lr5oh] {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}

.deck-card.selected[b-pkm27lr5oh] {
    border-color: var(--crimson-light);
    box-shadow: 0 0 0 1px var(--crimson-light), 0 0 16px rgba(196,30,58,0.3);
}

.deck-card-name[b-pkm27lr5oh] {
    min-width: 0;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--parchment);
    line-height: 1.3;

    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    word-break: break-word;
    height: calc(1.3em * 2);
}

.deck-card-sub[b-pkm27lr5oh] {
    font-family: 'MPlantin', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: var(--parchment-dark);
    opacity: 0.5;
    margin-top: 2px;
    font-style: italic;
}

.deck-owner[b-pkm27lr5oh] {
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--gold);
    flex: 0 0 auto;
}

.join-container[b-pkm27lr5oh] {
    display: flex;
    flex-direction: column;   /* 👈 this makes them stack */
    align-items: center;      /* 👈 centers them horizontally */
    gap: 10px;                /* 👈 space between buttons */
    padding: 12px;
}

.add-deck-button[b-pkm27lr5oh]{
    margin-left: 10px;
}

.login-popup[b-pkm27lr5oh] {
    width: 320px;
}

.popup-body[b-pkm27lr5oh] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.input-group[b-pkm27lr5oh] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-group label[b-pkm27lr5oh] {
    font-size: 12px;
    opacity: 0.8;
}

.text-input[b-pkm27lr5oh] {
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.popup-error[b-pkm27lr5oh] {
    color: #ff4d4f;
    font-size: 13px;
    margin-top: 4px;
}

.gametable-overlay[b-pkm27lr5oh] {
    position: fixed;
    inset: 0;
    background: #1f2937;
    z-index: 5000;
    overflow: hidden;
}

.deck-panel .commander-art .commander-random-button[b-pkm27lr5oh] {
    pointer-events: auto;
}

.warning-create-account-message[b-pkm27lr5oh] {
    color: #ff6b6b;

    background: rgba(120, 20, 20, 0.25);

    border: 1px solid rgba(255, 80, 80, 0.5);
    border-left: 4px solid #ff4d4d;

    padding: 10px 12px;
    border-radius: 8px;

    font-size: 13px;
    letter-spacing: 0.04em;

    margin-top: 8px;
}

.popup-overlay[b-pkm27lr5oh] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-box[b-pkm27lr5oh] {
    background: #1e1e1e;
    color: #eaeaea;
    border-radius: 12px;
    padding: 20px;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: popupFadeIn 0.2s ease-out;
}

.popup-title[b-pkm27lr5oh] {
    font-size: 16px;
    font-weight: 600;
}

.popup-header[b-pkm27lr5oh] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.popup-actions[b-pkm27lr5oh] {
    display: flex;
    justify-content: flex-end;
}
/* _content/Syr/Components/Placeholder/PlaceholderCard.razor.rz.scp.css */
/* _content/Syr/Components/Popup/NotifyMessage.razor.rz.scp.css */
.notify-overlay[b-9z3buxuw3f] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.notify-box[b-9z3buxuw3f] {
    background: #1e1e1e;
    color: white;
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.notify-message[b-9z3buxuw3f] {
    margin-bottom: 20px;
    font-size: 16px;
}

.notify-actions[b-9z3buxuw3f] {
    display: flex;
    justify-content: flex-end;
}

.error-popup[b-9z3buxuw3f] {
    border: 1px solid #3a3a3a;
}

.popup-icon[b-9z3buxuw3f] {
    color: #ff4d4f;
    font-size: 20px;
}

.popup-title[b-9z3buxuw3f] {
    font-size: 16px;
    font-weight: 600;
}

.popup-message[b-9z3buxuw3f] {
    font-size: 14px;
    color: #cfcfcf;
    margin-bottom: 20px;
    line-height: 1.4;
}

@keyframes popupFadeIn-b-9z3buxuw3f {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-overlay[b-9z3buxuw3f] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-box[b-9z3buxuw3f] {
    background: #1e1e1e;
    color: #eaeaea;
    border-radius: 12px;
    padding: 20px;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: popupFadeIn-b-9z3buxuw3f 0.2s ease-out;
}

.popup-title[b-9z3buxuw3f] {
    font-size: 16px;
    font-weight: 600;
}

.popup-title[b-9z3buxuw3f] {
    font-size: 16px;
    font-weight: 600;
}

.popup-header[b-9z3buxuw3f] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.popup-actions[b-9z3buxuw3f] {
    display: flex;
    justify-content: flex-end;
}
