/* /Components/TournamentBracket.razor.rz.scp.css */
.tournament-bracket[b-6kfh8ilqyy] {
    padding: 1rem;
}

.winner-banner[b-6kfh8ilqyy] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.25) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    animation: winnerGlow-b-6kfh8ilqyy 2s ease-in-out infinite;
}

@keyframes winnerGlow-b-6kfh8ilqyy {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 193, 7, 0.4);
    }
}

.trophy-icon[b-6kfh8ilqyy] {
    font-size: 3rem;
    animation: float-b-6kfh8ilqyy 3s ease-in-out infinite;
}

@keyframes float-b-6kfh8ilqyy {

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

    50% {
        transform: translateY(-10px);
    }
}

.bracket-container[b-6kfh8ilqyy] {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.bracket-round[b-6kfh8ilqyy] {
    display: flex;
    flex-direction: column;
    min-width: 220px;
}

.round-header[b-6kfh8ilqyy] {
    text-align: center;
    margin-bottom: 1rem;
}

.round-name[b-6kfh8ilqyy] {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sfg-accent);
    background: rgba(217, 4, 41, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.round-matches[b-6kfh8ilqyy] {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 1;
    gap: 1rem;
}

.bracket-match[b-6kfh8ilqyy] {
    background: linear-gradient(145deg, rgba(25, 25, 35, 0.9) 0%, rgba(15, 15, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.bracket-match:hover[b-6kfh8ilqyy] {
    border-color: rgba(217, 4, 41, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bracket-match.completed[b-6kfh8ilqyy] {
    border-color: rgba(25, 135, 84, 0.4);
}

.match-participant[b-6kfh8ilqyy] {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.match-participant:last-child[b-6kfh8ilqyy] {
    margin-bottom: 0;
}

.match-participant.winner[b-6kfh8ilqyy] {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.2) 0%, rgba(25, 135, 84, 0.3) 100%);
    border-left: 3px solid #198754;
}

.participant-name[b-6kfh8ilqyy] {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.match-participant.winner .participant-name[b-6kfh8ilqyy] {
    color: #75d4a7;
}

.match-vs[b-6kfh8ilqyy] {
    text-align: center;
    padding: 0.25rem;
}

.match-result[b-6kfh8ilqyy] {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sfg-accent);
}

.match-status[b-6kfh8ilqyy] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .bracket-container[b-6kfh8ilqyy] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .bracket-round[b-6kfh8ilqyy] {
        min-width: 100%;
    }
}
/* /Components/TournamentRankings.razor.rz.scp.css */
.tournament-rankings[b-3m87vkny0g] {
    padding: 1rem;
}

.table[b-3m87vkny0g] {
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.table thead th[b-3m87vkny0g] {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sfg-accent);
    border-bottom: 2px solid rgba(217, 4, 41, 0.3);
    padding: 0.75rem;
}

.table tbody tr[b-3m87vkny0g] {
    background: rgba(25, 25, 35, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.table tbody tr:hover[b-3m87vkny0g] {
    background: rgba(25, 25, 35, 0.9);
}

.table tbody tr.winner-row[b-3m87vkny0g] {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.2) 50%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.table tbody tr.active-row[b-3m87vkny0g] {
    background: linear-gradient(90deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.15) 100%);
}

.table tbody td[b-3m87vkny0g] {
    padding: 0.75rem;
    border: none;
    vertical-align: middle;
}

.position-badge[b-3m87vkny0g] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.position-badge.gold[b-3m87vkny0g] {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.position-badge.silver[b-3m87vkny0g] {
    background: linear-gradient(135deg, #adb5bd 0%, #868e96 100%);
    color: #000;
    box-shadow: 0 0 10px rgba(173, 181, 189, 0.3);
}

.position-badge.bronze[b-3m87vkny0g] {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    color: #fff;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.position-number[b-3m87vkny0g] {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.participant-name[b-3m87vkny0g] {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.phase-badge[b-3m87vkny0g] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

@media (max-width: 768px) {

    .table thead th[b-3m87vkny0g],
    .table tbody td[b-3m87vkny0g] {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .position-badge[b-3m87vkny0g] {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-k28nxnexde] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-k28nxnexde] {
    background-color: var(--sfg-black);
    border-right: 1px solid #333;
    /* Remove default gradient */
    background-image: none;
}

.top-row[b-k28nxnexde] {
    background-color: var(--sfg-dark-grey);
    border-bottom: 1px solid #333;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-k28nxnexde]  a,
.top-row[b-k28nxnexde]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--sfg-light-grey);
}

.top-row[b-k28nxnexde]  a:hover,
.top-row[b-k28nxnexde]  .btn-link:hover {
    color: var(--sfg-red);
}

@media (min-width: 641px) {
    .page[b-k28nxnexde] {
        flex-direction: row;
    }

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

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

    .top-row[b-k28nxnexde],
    article[b-k28nxnexde] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6k4j2puj50] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-6k4j2puj50] {
    min-height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand[b-6k4j2puj50] {
    font-size: 1.1rem;
    color: var(--sfg-white);
    font-weight: bold;
    text-transform: uppercase;
}

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

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

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

.nav-item[b-6k4j2puj50]  a {
    color: var(--sfg-light-grey);
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    padding-left: 1rem;
    border-left: 4px solid transparent;
    transition: all 0.2s;
}

.nav-item[b-6k4j2puj50]  a.active {
    background-color: rgba(217, 4, 41, 0.1);
    color: var(--sfg-white);
    border-left: 4px solid var(--sfg-red);
}

.nav-item[b-6k4j2puj50]  a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--sfg-white);
}

/* Icons */
.bi[b-6k4j2puj50] {
    margin-right: 0.75rem;
}
/* /Pages/Games.razor.rz.scp.css */
/* Game Card Styles */
.game-card[b-l2wi3nozam] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.game-card[b-l2wi3nozam]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0) 0%, rgba(217, 4, 41, 0.3) 50%, rgba(217, 4, 41, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card:hover[b-l2wi3nozam]::before {
    opacity: 1;
}

.game-card:hover[b-l2wi3nozam] {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(217, 4, 41, 0.15) !important;
}

/* Game Icon Container */
.game-icon-container[b-l2wi3nozam] {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Actual game icon image */
.game-icon[b-l2wi3nozam] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.game-card:hover .game-icon[b-l2wi3nozam] {
    transform: scale(1.05);
}

/* Default placeholder when no image or image fails to load */
.game-icon-placeholder[b-l2wi3nozam] {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #151520 0%, #0d0d15 50%, #0a0a12 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-icon-placeholder[b-l2wi3nozam]::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(217, 4, 41, 0.08) 0%, transparent 40%);
    animation: placeholderPulse-b-l2wi3nozam 4s ease-in-out infinite;
}

@keyframes placeholderPulse-b-l2wi3nozam {

    0%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Game controller icon (using SVG inline or Unicode) */
.placeholder-icon[b-l2wi3nozam] {
    font-size: 3.5rem;
    z-index: 1;
    filter: grayscale(30%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.game-card:hover .placeholder-icon[b-l2wi3nozam] {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.placeholder-text[b-l2wi3nozam] {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.75rem;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

/* Card Title styling */
.game-card .card-title[b-l2wi3nozam] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(217, 4, 41, 0.2);
}

/* Card description */
.game-card .card-text[b-l2wi3nozam] {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55) !important;
    min-height: 40px;
}

/* Card Footer */
.game-card .card-footer[b-l2wi3nozam] {
    background: rgba(0, 0, 0, 0.4) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 0.875rem 1.25rem !important;
}

/* Deleted state */
.game-card.opacity-50[b-l2wi3nozam] {
    opacity: 0.55;
    filter: saturate(0.5);
}

.game-card.opacity-50:hover[b-l2wi3nozam] {
    opacity: 0.8;
    filter: saturate(0.8);
}

/* Deleted badge positioning */
.game-card .badge[b-l2wi3nozam] {
    font-size: 0.65rem;
    padding: 0.4em 0.7em;
    z-index: 10;
}
