/* /App.razor.rz.scp.css */
/* App component specific styles - moved global styles to wwwroot/css/app.css */

/* Keep only component-specific styles here if needed */

[b-62ssqdvhkq] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

[b-62ssqdvhkq] .navbar-toggler-icon {
    background-image: 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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer styles */
[b-62ssqdvhkq] .footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #dee2e6;
}

/* Utility classes */
[b-62ssqdvhkq] .text-center {
    text-align: center;
}

[b-62ssqdvhkq] .mt-3 {
    margin-top: 1rem;
}

[b-62ssqdvhkq] .mb-3 {
    margin-bottom: 1rem;
}

[b-62ssqdvhkq] .p-3 {
    padding: 1rem;
}
/* /Components/BingoCardComponent.razor.rz.scp.css */
.bingo-card-container[b-sqm84f1ca1] {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
}

.bingo-card[b-sqm84f1ca1] {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    padding: 0;
    border: none;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

/* Landscape: center the card and let it size based on height */
@media (orientation: landscape) and (max-height: 600px) {
    .bingo-card[b-sqm84f1ca1] {
        width: auto;
        max-width: none;
        height: fit-content;
    }
}

.bingo-header[b-sqm84f1ca1] {
    text-align: center;
    margin-bottom: 10px;
}

.win-banner[b-sqm84f1ca1] {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2em;
    animation: pulse-b-sqm84f1ca1 2s infinite;
    border: 2px solid #ffc107;
}

.win-banner i[b-sqm84f1ca1] {
    margin: 0 10px;
    color: #ff6b35;
}

.new-card-banner[b-sqm84f1ca1] {
    background: linear-gradient(45deg, #17a2b8, #20c997);
    position: relative;
}

.new-card-banner i[b-sqm84f1ca1] {
    color: #fff;
}

.btn-close-banner[b-sqm84f1ca1] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8em;
}

.btn-close-banner:hover[b-sqm84f1ca1] {
    background: rgba(255, 255, 255, 0.3);
}

.progress-info[b-sqm84f1ca1] {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.progress-info span:first-child[b-sqm84f1ca1] {
    font-weight: 700;
    color: #007bff;
    font-size: 1.1rem;
}

.bingo-grid[b-sqm84f1ca1] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 0;
    padding: 3px;
    margin: 0;
    box-shadow: none;
    aspect-ratio: 1;
    /* Portrait: fill width, height adjusts */
    width: 100%;
    box-sizing: border-box;
}

/* Landscape orientation: prioritize height, width adjusts */
@media (orientation: landscape) and (max-height: 600px) {
    .bingo-grid[b-sqm84f1ca1] {
        width: auto;
        height: 70vh;
        max-height: 70vh;
        margin: 0 auto;
    }
}

.bingo-row[b-sqm84f1ca1] {
    display: contents;
}

.bingo-cell[b-sqm84f1ca1] {
    aspect-ratio: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 4px;
}

.bingo-cell.clickable[b-sqm84f1ca1] {
    cursor: pointer;
}

.bingo-cell.clickable:hover[b-sqm84f1ca1] {
    background: #f8f9fa;
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.bingo-cell.completed[b-sqm84f1ca1] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    animation: completionPulse-b-sqm84f1ca1 0.6s ease-out;
}

.bingo-cell.free-space[b-sqm84f1ca1] {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
}

.bingo-cell.winning-cell[b-sqm84f1ca1] {
    animation: winningGlow-b-sqm84f1ca1 1.5s infinite;
    border: 3px solid #ffd700;
}

.cell-content[b-sqm84f1ca1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    width: 100%;
    height: 100%;
    position: relative;
}

.item-text[b-sqm84f1ca1] {
    font-size: 0.75em;
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.free-space[b-sqm84f1ca1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.free-space i[b-sqm84f1ca1] {
    font-size: 1.5em;
}

.free-space span[b-sqm84f1ca1] {
    font-weight: bold;
    font-size: 0.9em;
}

.checkmark[b-sqm84f1ca1] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(40, 167, 69, 0.9);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    color: white;
    animation: checkmarkAppear-b-sqm84f1ca1 0.5s ease-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.completion-time[b-sqm84f1ca1] {
    position: absolute;
    bottom: 2px;
    left: 2px;
    font-size: 0.6em;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

.winning-pattern-info[b-sqm84f1ca1] {
    text-align: center;
    margin-bottom: 15px;
    color: #ffc107;
    font-weight: bold;
}

.winning-pattern-info i[b-sqm84f1ca1] {
    margin-right: 8px;
    color: #ffd700;
}

.card-actions[b-sqm84f1ca1] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 0 15px;
}

.card-actions .btn[b-sqm84f1ca1] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.card-actions .btn:hover:not(:disabled)[b-sqm84f1ca1] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.no-card[b-sqm84f1ca1] {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-card i[b-sqm84f1ca1] {
    font-size: 4em;
    color: #ddd;
    margin-bottom: 20px;
}

.no-card h3[b-sqm84f1ca1] {
    color: #333;
    margin-bottom: 10px;
}

/* Animations */
@keyframes pulse-b-sqm84f1ca1 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes completionPulse-b-sqm84f1ca1 {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes winningGlow-b-sqm84f1ca1 {
    0%, 100% { box-shadow: 0 0 5px #ffd700; }
    50% { box-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700; }
}

@keyframes checkmarkAppear-b-sqm84f1ca1 {
    0% { 
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .bingo-card-container[b-sqm84f1ca1] {
        padding: 0;
    }

    .bingo-card[b-sqm84f1ca1] {
        padding: 0;
        border-radius: 0;
        border: none;
    }

    .bingo-cell[b-sqm84f1ca1] {
        border-radius: 4px;
        padding: 2px;
    }

    .item-text[b-sqm84f1ca1] {
        font-size: 0.6em;
        line-height: 1.1;
    }

    .card-actions[b-sqm84f1ca1] {
        flex-direction: column;
        align-items: center;
    }

    .card-actions .btn[b-sqm84f1ca1] {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .bingo-card-container[b-sqm84f1ca1] {
        padding: 0;
    }

    .bingo-card[b-sqm84f1ca1] {
        padding: 0;
    }

    .bingo-cell[b-sqm84f1ca1] {
        padding: 1px;
    }

    .item-text[b-sqm84f1ca1] {
        font-size: 0.55em;
        line-height: 1.0;
    }

    .checkmark[b-sqm84f1ca1] {
        width: 16px;
        height: 16px;
        font-size: 0.6em;
        top: 2px;
        right: 2px;
    }
}
/* /Components/MultiplayerLobbyComponent.razor.rz.scp.css */
.lobby-container[b-xnrma94jsz] {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.lobby-tabs[b-xnrma94jsz] {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.tab-button[b-xnrma94jsz] {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1em;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover[b-xnrma94jsz] {
    background: #e9ecef;
    color: #495057;
}

.tab-button.active[b-xnrma94jsz] {
    color: #007bff;
    background: white;
    border-bottom-color: #007bff;
}

.tab-content[b-xnrma94jsz] {
    padding: 40px;
}

.create-trip-panel h3[b-xnrma94jsz],
.join-trip-panel h3[b-xnrma94jsz] {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5em;
    font-weight: 700;
}

.form-group[b-xnrma94jsz] {
    margin-bottom: 25px;
}

.form-group label[b-xnrma94jsz] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-control[b-xnrma94jsz] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus[b-xnrma94jsz] {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-actions[b-xnrma94jsz] {
    text-align: center;
    margin-top: 30px;
}

.btn[b-xnrma94jsz] {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-xnrma94jsz] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover:not(:disabled)[b-xnrma94jsz] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary[b-xnrma94jsz] {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover:not(:disabled)[b-xnrma94jsz] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.btn-outline-secondary[b-xnrma94jsz] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-outline-secondary:hover[b-xnrma94jsz] {
    background: #6c757d;
    color: white;
}

.btn:disabled[b-xnrma94jsz] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-lg[b-xnrma94jsz] {
    padding: 15px 40px;
    font-size: 1.1em;
}

/* Join Trip Specific Styles */
.join-methods[b-xnrma94jsz] {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.join-method[b-xnrma94jsz] {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.join-method h4[b-xnrma94jsz] {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.trip-code-input[b-xnrma94jsz] {
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 200px;
    margin: 0 auto 20px auto;
}

.join-divider[b-xnrma94jsz] {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.join-divider[b-xnrma94jsz]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
}

.join-divider span[b-xnrma94jsz] {
    background: white;
    padding: 0 20px;
    color: #6c757d;
    font-weight: 600;
}

.text-muted[b-xnrma94jsz] {
    color: #6c757d !important;
    margin-bottom: 15px;
}

/* Input group styling for change user button */
.input-group[b-xnrma94jsz] {
    display: flex;
    align-items: stretch;
}

.input-group .form-control[b-xnrma94jsz] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.input-group .btn[b-xnrma94jsz] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #dee2e6;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.input-group .btn:hover[b-xnrma94jsz] {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

/* Modal styles */
.modal-overlay[b-xnrma94jsz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-dialog[b-xnrma94jsz] {
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content[b-xnrma94jsz] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header[b-xnrma94jsz] {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h4[b-xnrma94jsz] {
    margin: 0;
    font-size: 1.25em;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body[b-xnrma94jsz] {
    padding: 20px 25px;
    color: #333;
}

.modal-body p[b-xnrma94jsz] {
    margin-bottom: 15px;
}

.modal-body ul[b-xnrma94jsz] {
    margin: 15px 0;
    padding-left: 20px;
}

.modal-body li[b-xnrma94jsz] {
    margin-bottom: 8px;
    color: #666;
}

.modal-footer[b-xnrma94jsz] {
    padding: 15px 25px 20px;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-close[b-xnrma94jsz] {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #666;
}

.btn-close:hover[b-xnrma94jsz] {
    background-color: #f8f9fa;
    color: #333;
}

.text-warning[b-xnrma94jsz] {
    color: #ff9500 !important;
}

/* Form text styling */
.form-text[b-xnrma94jsz] {
    font-size: 0.875em;
    margin-top: 5px;
}

.form-text i[b-xnrma94jsz] {
    margin-right: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-content[b-xnrma94jsz] {
        padding: 20px;
    }
    
    .lobby-tabs[b-xnrma94jsz] {
        flex-direction: column;
    }
    
    .tab-button[b-xnrma94jsz] {
        padding: 15px;
    }
    
    .join-methods[b-xnrma94jsz] {
        gap: 20px;
    }
    
    .join-method[b-xnrma94jsz] {
        padding: 20px 15px;
    }
    
    .form-control[b-xnrma94jsz] {
        padding: 10px 12px;
    }
    
    .btn[b-xnrma94jsz] {
        padding: 10px 20px;
    }
    
    .btn-lg[b-xnrma94jsz] {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .modal-dialog[b-xnrma94jsz] {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header[b-xnrma94jsz],
    .modal-body[b-xnrma94jsz],
    .modal-footer[b-xnrma94jsz] {
        padding: 15px 20px;
    }
    
    .modal-footer[b-xnrma94jsz] {
        flex-direction: column;
    }
    
    .modal-footer .btn[b-xnrma94jsz] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lobby-container[b-xnrma94jsz] {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .tab-content[b-xnrma94jsz] {
        padding: 15px;
    }
    
    .create-trip-panel h3[b-xnrma94jsz],
    .join-trip-panel h3[b-xnrma94jsz] {
        font-size: 1.3em;
    }
    
    .form-group[b-xnrma94jsz] {
        margin-bottom: 20px;
    }
}
/* /Components/PlayerThumbnailComponent.razor.rz.scp.css */
.player-thumbnail[b-s91r59p5e2] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.player-thumbnail:hover[b-s91r59p5e2] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.player-thumbnail.current-player[b-s91r59p5e2] {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.1);
}

.player-thumbnail.current-player[b-s91r59p5e2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.player-thumbnail.disconnected[b-s91r59p5e2] {
    opacity: 0.6;
    filter: grayscale(50%);
}

.player-avatar[b-s91r59p5e2] {
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}

.avatar-circle[b-s91r59p5e2] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.host-badge[b-s91r59p5e2] {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.connection-indicator[b-s91r59p5e2] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6em;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.connection-indicator.online[b-s91r59p5e2] {
    background: #28a745;
    color: white;
}

.connection-indicator.offline[b-s91r59p5e2] {
    background: #dc3545;
    color: white;
}

.player-info[b-s91r59p5e2] {
    color: white;
}

.player-name[b-s91r59p5e2] {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.you-badge[b-s91r59p5e2] {
    background: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-stats[b-s91r59p5e2] {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    gap: 5px;
}

.stat-item[b-s91r59p5e2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.8em;
}

.stat-item i[b-s91r59p5e2] {
    font-size: 1.1em;
    opacity: 0.8;
}

.stat-item span[b-s91r59p5e2] {
    font-weight: 600;
}

.progress-container[b-s91r59p5e2] {
    margin-bottom: 10px;
}

.progress-bar[b-s91r59p5e2] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill[b-s91r59p5e2] {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: width 0.5s ease;
    border-radius: 3px;
}

.progress-text[b-s91r59p5e2] {
    font-size: 0.8em;
    font-weight: 600;
    opacity: 0.8;
}

.offline-indicator[b-s91r59p5e2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.8em;
    color: #dc3545;
    margin-top: 10px;
    padding: 5px 10px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Animations */
@keyframes pulse-b-s91r59p5e2 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.player-thumbnail.disconnected .connection-indicator.offline[b-s91r59p5e2] {
    animation: pulse-b-s91r59p5e2 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .player-thumbnail[b-s91r59p5e2] {
        padding: 15px;
    }
    
    .avatar-circle[b-s91r59p5e2] {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
    
    .host-badge[b-s91r59p5e2] {
        width: 20px;
        height: 20px;
        font-size: 0.6em;
    }
    
    .connection-indicator[b-s91r59p5e2] {
        width: 14px;
        height: 14px;
        font-size: 0.5em;
    }
    
    .player-name[b-s91r59p5e2] {
        font-size: 1em;
    }
    
    .player-stats[b-s91r59p5e2] {
        gap: 3px;
    }
    
    .stat-item[b-s91r59p5e2] {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .player-thumbnail[b-s91r59p5e2] {
        padding: 12px;
    }
    
    .avatar-circle[b-s91r59p5e2] {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    
    .player-name[b-s91r59p5e2] {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .you-badge[b-s91r59p5e2] {
        font-size: 0.5em;
        padding: 1px 4px;
    }
    
    .stat-item[b-s91r59p5e2] {
        font-size: 0.65em;
    }
    
    .progress-text[b-s91r59p5e2] {
        font-size: 0.7em;
    }
    
    .offline-indicator[b-s91r59p5e2] {
        font-size: 0.7em;
        padding: 4px 8px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-rts8bwddtb] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-rts8bwddtb] {
    flex: 1;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Clean, full-width layout for the game */
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-s7vj0u6kec] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.bi[b-s7vj0u6kec] {
    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-s7vj0u6kec] {
    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-s7vj0u6kec] {
    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-s7vj0u6kec] {
    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-s7vj0u6kec] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item[b-s7vj0u6kec]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

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

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

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

    .collapse[b-s7vj0u6kec] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-s7vj0u6kec] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Game.razor.rz.scp.css */
.game-container[b-op6d0t9s4a] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
}

.game-setup[b-op6d0t9s4a] {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.setup-header[b-op6d0t9s4a] {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.setup-header h1[b-op6d0t9s4a] {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.setup-header p[b-op6d0t9s4a] {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.destination-input[b-op6d0t9s4a] {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.destination-input .form-label[b-op6d0t9s4a] {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.destination-input .form-control[b-op6d0t9s4a] {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.destination-input .form-control:focus[b-op6d0t9s4a] {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.destination-input .btn[b-op6d0t9s4a] {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.destination-input .btn:hover[b-op6d0t9s4a] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-active[b-op6d0t9s4a] {
    max-width: 800px;
    margin: 0 auto;
}

.game-header[b-op6d0t9s4a] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 12px 20px;
    margin: 0 20px 15px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.trip-info h2[b-op6d0t9s4a] {
    color: #333;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.trip-info p[b-op6d0t9s4a] {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.trip-info i[b-op6d0t9s4a] {
    margin-right: 8px;
    color: #007bff;
}

.game-actions[b-op6d0t9s4a] {
    display: flex;
    gap: 10px;
}

.game-actions .btn[b-op6d0t9s4a] {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #6c757d;
    background: white;
    color: #6c757d;
}

.game-actions .btn:hover[b-op6d0t9s4a] {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.loading-card[b-op6d0t9s4a] {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: #333;
}

.loading-card i[b-op6d0t9s4a] {
    color: #007bff;
    margin-bottom: 20px;
}

.loading-card h3[b-op6d0t9s4a] {
    margin-bottom: 15px;
    font-weight: 600;
}

.error-state[b-op6d0t9s4a] {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-content[b-op6d0t9s4a] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.error-content h3[b-op6d0t9s4a] {
    color: #333;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.error-content p[b-op6d0t9s4a] {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Modal Styles */
.modal-overlay[b-op6d0t9s4a] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 20px;
}

.modal-content[b-op6d0t9s4a] {
    background: white;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn-b-op6d0t9s4a 0.3s ease-out;
}

.modal-header[b-op6d0t9s4a] {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4[b-op6d0t9s4a] {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.btn-close[b-op6d0t9s4a] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-close:hover[b-op6d0t9s4a] {
    background: #f8f9fa;
    color: #333;
}

.modal-body[b-op6d0t9s4a] {
    padding: 20px 25px 25px;
}

.menu-options .btn[b-op6d0t9s4a] {
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-options .btn:hover[b-op6d0t9s4a] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

@keyframes modalSlideIn-b-op6d0t9s4a {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-container[b-op6d0t9s4a] {
        padding: 0;
    }

    .setup-header h1[b-op6d0t9s4a] {
        font-size: 2rem;
    }

    .game-header[b-op6d0t9s4a] {
        padding: 8px 15px;
        margin: 0 10px 10px 10px;
        flex-direction: row;
        text-align: left;
    }

    .multiplayer-summary-panel[b-op6d0t9s4a] {
        margin: 0 10px 0.5rem 10px;
    }

    .trip-info h2[b-op6d0t9s4a] {
        font-size: 1.1rem;
    }

    .trip-info p[b-op6d0t9s4a] {
        font-size: 0.8rem;
    }

    .game-actions .btn[b-op6d0t9s4a] {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .modal-content[b-op6d0t9s4a] {
        margin: 10px;
    }

    /* Multiplayer mobile adjustments */
    .trip-summary[b-op6d0t9s4a] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .player-summary[b-op6d0t9s4a] {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .trip-actions[b-op6d0t9s4a] {
        flex-direction: column;
    }

    .trip-actions .btn[b-op6d0t9s4a] {
        width: 100%;
    }

    .player-stats[b-op6d0t9s4a] {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .game-container[b-op6d0t9s4a] {
        padding: 0;
    }

    .destination-input[b-op6d0t9s4a] {
        padding: 20px;
    }

    .setup-header h1[b-op6d0t9s4a] {
        font-size: 1.8rem;
    }

    .game-header[b-op6d0t9s4a] {
        padding: 6px 12px;
        margin: 0 5px 8px 5px;
    }

    .multiplayer-summary-panel[b-op6d0t9s4a] {
        margin: 0 5px 0.5rem 5px;
    }

    .trip-info h2[b-op6d0t9s4a] {
        font-size: 1rem;
    }

    .trip-info p[b-op6d0t9s4a] {
        font-size: 0.75rem;
    }

    .game-actions .btn[b-op6d0t9s4a] {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* Multiplayer Styles */
.multiplayer-summary-panel[b-op6d0t9s4a] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin: 0 20px 0.5rem 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.multiplayer-summary-panel:hover[b-op6d0t9s4a] {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.trip-summary[b-op6d0t9s4a] {
    padding: 0.4rem 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.trip-info h4[b-op6d0t9s4a] {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.trip-code[b-op6d0t9s4a] {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    display: inline-block;
}

.player-summary[b-op6d0t9s4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.current-score[b-op6d0t9s4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-label[b-op6d0t9s4a] {
    font-size: 0.7rem;
    opacity: 0.9;
}

.score-value[b-op6d0t9s4a] {
    font-size: 1rem;
    font-weight: bold;
}

.leader-info[b-op6d0t9s4a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
}

.leader-badge[b-op6d0t9s4a] {
    background: #ffd700;
    color: #333;
    padding: 0.15rem 0.3rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
}

.expand-indicator[b-op6d0t9s4a] {
    opacity: 0.7;
    font-size: 1rem;
}

/* Multiplayer Details Modal */
.multiplayer-details-modal[b-op6d0t9s4a] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-op6d0t9s4a] {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header[b-op6d0t9s4a] {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-op6d0t9s4a] {
    margin: 0;
    color: #333;
}

.btn-close[b-op6d0t9s4a] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body[b-op6d0t9s4a] {
    padding: 1.5rem;
}

.modal-footer[b-op6d0t9s4a] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Leaderboard */
.leaderboard[b-op6d0t9s4a] {
    margin-bottom: 1.5rem;
}

.leaderboard-item[b-op6d0t9s4a] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border: 2px solid transparent;
}

.leaderboard-item.current-player[b-op6d0t9s4a] {
    background: #e3f2fd;
    border-color: #2196f3;
}

.rank[b-op6d0t9s4a] {
    width: 40px;
    text-align: center;
    font-weight: bold;
}

.rank .fa-crown[b-op6d0t9s4a] {
    color: #ffd700;
    font-size: 1.2rem;
}

.player-info[b-op6d0t9s4a] {
    flex: 1;
}

.player-name[b-op6d0t9s4a] {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.you-badge[b-op6d0t9s4a] {
    background: #2196f3;
    color: white;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.player-stats[b-op6d0t9s4a] {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 1rem;
}

.connection-status[b-op6d0t9s4a] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.connection-status.connected .fa-circle[b-op6d0t9s4a] {
    color: #4caf50;
}

.connection-status.disconnected .fa-circle[b-op6d0t9s4a] {
    color: #f44336;
}

/* Trip Actions */
.trip-actions[b-op6d0t9s4a] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.trip-actions .btn[b-op6d0t9s4a] {
    flex: 1;
    min-width: 120px;
}

/* Share Modal */
.share-options[b-op6d0t9s4a] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trip-code-section[b-op6d0t9s4a], .qr-code-section[b-op6d0t9s4a] {
    text-align: center;
}

.trip-code-display[b-op6d0t9s4a] {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.qr-code-container[b-op6d0t9s4a] {
    margin: 1rem 0;
}

.qr-code-container img[b-op6d0t9s4a] {
    max-width: 200px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Penalty Warning Modal */
.penalty-warning .modal-content[b-op6d0t9s4a] {
    border: 2px solid #ff9800;
}

.penalty-warning .alert-warning[b-op6d0t9s4a] {
    border-left: 4px solid #ff9800;
}

.current-card-status[b-op6d0t9s4a] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.status-details[b-op6d0t9s4a] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.progress-indicator[b-op6d0t9s4a] {
    color: #2196f3;
    font-weight: 500;
}

.bingo-status.success[b-op6d0t9s4a] {
    color: #4caf50;
    font-weight: bold;
}

.penalty-warning span[b-op6d0t9s4a] {
    color: #ff9800;
    font-weight: 500;
}
/* /Pages/Home.razor.rz.scp.css */
.hero-section[b-2f6p1or8uh] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 20px;
    color: white;
}

.hero-content[b-2f6p1or8uh] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1[b-2f6p1or8uh] {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1 i[b-2f6p1or8uh] {
    color: #ffd700;
    margin-right: 15px;
}

.lead[b-2f6p1or8uh] {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.features[b-2f6p1or8uh] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature[b-2f6p1or8uh] {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
}

.feature i[b-2f6p1or8uh] {
    color: #ffd700;
    font-size: 1.3em;
    width: 25px;
}

.cta-section[b-2f6p1or8uh] {
    margin-top: 40px;
}

.game-mode-buttons[b-2f6p1or8uh] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg[b-2f6p1or8uh] {
    padding: 18px 40px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    min-width: 180px;
}

.btn-lg:hover[b-2f6p1or8uh] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(45deg, #218838, #1e7e34);
}

.btn-secondary[b-2f6p1or8uh] {
    background: linear-gradient(45deg, #6c757d, #495057) !important;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover[b-2f6p1or8uh] {
    background: linear-gradient(45deg, #5a6268, #3d4043) !important;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.btn-lg i[b-2f6p1or8uh] {
    margin-right: 10px;
}

/* Bingo Preview */
.hero-image[b-2f6p1or8uh] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bingo-preview[b-2f6p1or8uh] {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.bingo-preview:hover[b-2f6p1or8uh] {
    transform: rotate(0deg) scale(1.05);
}

.preview-grid[b-2f6p1or8uh] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 240px;
}

.preview-cell[b-2f6p1or8uh] {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8em;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-cell.completed[b-2f6p1or8uh] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.preview-cell:nth-child(odd)[b-2f6p1or8uh] {
    animation: float-b-2f6p1or8uh 3s ease-in-out infinite;
}

.preview-cell:nth-child(even)[b-2f6p1or8uh] {
    animation: float-b-2f6p1or8uh 3s ease-in-out infinite reverse;
}

/* Info Section */
.info-section[b-2f6p1or8uh] {
    padding: 80px 20px;
    background: #f8f9fa;
}

.info-section .container[b-2f6p1or8uh] {
    max-width: 1200px;
    margin: 0 auto;
}

.info-section h2[b-2f6p1or8uh] {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 60px;
    font-weight: bold;
}

.steps[b-2f6p1or8uh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step[b-2f6p1or8uh] {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover[b-2f6p1or8uh] {
    transform: translateY(-5px);
}

.step-number[b-2f6p1or8uh] {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3[b-2f6p1or8uh] {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step p[b-2f6p1or8uh] {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes float-b-2f6p1or8uh {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content[b-2f6p1or8uh] {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1[b-2f6p1or8uh] {
        font-size: 2.5em;
    }
    
    .lead[b-2f6p1or8uh] {
        font-size: 1.1em;
    }
    
    .features[b-2f6p1or8uh] {
        align-items: center;
    }
    
    .preview-grid[b-2f6p1or8uh] {
        width: 200px;
    }
    
    .preview-cell[b-2f6p1or8uh] {
        font-size: 0.7em;
        min-height: 50px;
        padding: 8px 4px;
    }
    
    .info-section h2[b-2f6p1or8uh] {
        font-size: 2em;
    }
    
    .steps[b-2f6p1or8uh] {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section[b-2f6p1or8uh] {
        padding: 10px;
    }
    
    .hero-text h1[b-2f6p1or8uh] {
        font-size: 2em;
    }
    
    .btn-lg[b-2f6p1or8uh] {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .preview-grid[b-2f6p1or8uh] {
        width: 180px;
    }
    
    .preview-cell[b-2f6p1or8uh] {
        font-size: 0.65em;
        min-height: 45px;
    }
    
    .info-section[b-2f6p1or8uh] {
        padding: 60px 10px;
    }
    
    .step[b-2f6p1or8uh] {
        padding: 20px;
    }
}
/* /Pages/Leaderboards.razor.rz.scp.css */
.leaderboards-container[b-641prk8mbj] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.leaderboards-header[b-641prk8mbj] {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.leaderboards-header h1[b-641prk8mbj] {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.leaderboards-header .lead[b-641prk8mbj] {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.loading-section[b-641prk8mbj],
.error-section[b-641prk8mbj],
.empty-section[b-641prk8mbj] {
    text-align: center;
    color: white;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.loading-section i[b-641prk8mbj],
.error-section i[b-641prk8mbj],
.empty-section i[b-641prk8mbj] {
    margin-bottom: 30px;
    opacity: 0.8;
}

.loading-section h3[b-641prk8mbj],
.error-section h3[b-641prk8mbj],
.empty-section h3[b-641prk8mbj] {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.loading-section p[b-641prk8mbj],
.error-section p[b-641prk8mbj],
.empty-section p[b-641prk8mbj] {
    font-size: 1.1em;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn[b-641prk8mbj] {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary[b-641prk8mbj] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover[b-641prk8mbj] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.leaderboards-content[b-641prk8mbj] {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-summary[b-641prk8mbj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card[b-641prk8mbj] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.stat-card:hover[b-641prk8mbj] {
    transform: translateY(-5px);
}

.stat-card i[b-641prk8mbj] {
    font-size: 2.5em;
    opacity: 0.8;
}

.stat-info[b-641prk8mbj] {
    flex: 1;
}

.stat-number[b-641prk8mbj] {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label[b-641prk8mbj] {
    font-size: 0.9em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table[b-641prk8mbj] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    color: white;
}

.table-header[b-641prk8mbj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.table-header h3[b-641prk8mbj] {
    font-size: 1.8em;
    font-weight: 600;
    margin: 0;
}

.last-updated[b-641prk8mbj] {
    font-size: 0.9em;
    opacity: 0.7;
}

.leaderboard-list[b-641prk8mbj] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaderboard-entry[b-641prk8mbj] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.leaderboard-entry:hover[b-641prk8mbj] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.leaderboard-entry.podium[b-641prk8mbj] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.rank-section[b-641prk8mbj] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.rank-medal[b-641prk8mbj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 1.5em;
}

.rank-medal.gold[b-641prk8mbj] { color: #ffd700; }
.rank-medal.silver[b-641prk8mbj] { color: #c0c0c0; }
.rank-medal.bronze[b-641prk8mbj] { color: #cd7f32; }

.rank-medal .rank-number[b-641prk8mbj] {
    font-size: 0.8em;
    font-weight: 700;
}

.rank-number-only[b-641prk8mbj] {
    font-size: 1.8em;
    font-weight: 700;
    color: #6c757d;
}

.player-section[b-641prk8mbj] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.player-avatar[b-641prk8mbj] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.player-info[b-641prk8mbj] {
    flex: 1;
}

.player-name[b-641prk8mbj] {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.player-id[b-641prk8mbj] {
    font-size: 0.8em;
    opacity: 0.6;
    font-family: 'Courier New', monospace;
}

.stats-section[b-641prk8mbj] {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-item[b-641prk8mbj] {
    text-align: center;
    min-width: 60px;
}

.stat-item.primary .stat-value[b-641prk8mbj] {
    color: #ffd700;
    font-size: 1.3em;
}

.stat-value[b-641prk8mbj] {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
}

.stat-item .stat-label[b-641prk8mbj] {
    font-size: 0.7em;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leaderboards-container[b-641prk8mbj] {
        padding: 10px;
    }
    
    .leaderboards-header h1[b-641prk8mbj] {
        font-size: 2.2em;
    }
    
    .leaderboards-header .lead[b-641prk8mbj] {
        font-size: 1.1em;
    }
    
    .stats-summary[b-641prk8mbj] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card[b-641prk8mbj] {
        padding: 20px;
    }
    
    .stat-card i[b-641prk8mbj] {
        font-size: 2em;
    }
    
    .stat-number[b-641prk8mbj] {
        font-size: 1.5em;
    }
    
    .leaderboard-table[b-641prk8mbj] {
        padding: 20px;
    }
    
    .table-header[b-641prk8mbj] {
        flex-direction: column;
        text-align: center;
    }
    
    .table-header h3[b-641prk8mbj] {
        font-size: 1.5em;
    }
    
    .leaderboard-entry[b-641prk8mbj] {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    .rank-section[b-641prk8mbj] {
        min-width: auto;
    }
    
    .player-section[b-641prk8mbj] {
        justify-content: center;
    }
    
    .stats-section[b-641prk8mbj] {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .leaderboards-header h1[b-641prk8mbj] {
        font-size: 1.8em;
    }
    
    .leaderboards-header .lead[b-641prk8mbj] {
        font-size: 1em;
    }
    
    .stat-card[b-641prk8mbj] {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-card i[b-641prk8mbj] {
        font-size: 1.8em;
    }
    
    .stat-number[b-641prk8mbj] {
        font-size: 1.3em;
    }
    
    .leaderboard-table[b-641prk8mbj] {
        padding: 15px;
    }
    
    .leaderboard-entry[b-641prk8mbj] {
        padding: 12px;
    }
    
    .player-avatar[b-641prk8mbj] {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .player-name[b-641prk8mbj] {
        font-size: 1em;
    }
    
    .stats-section[b-641prk8mbj] {
        gap: 10px;
    }
    
    .stat-item[b-641prk8mbj] {
        min-width: 50px;
    }
    
    .stat-value[b-641prk8mbj] {
        font-size: 1em;
    }
    
    .stat-item .stat-label[b-641prk8mbj] {
        font-size: 0.6em;
    }
}
/* /Pages/Multiplayer.razor.rz.scp.css */
.multiplayer-container[b-rca5ph5goc] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.multiplayer-header[b-rca5ph5goc] {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.multiplayer-header h1[b-rca5ph5goc] {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.multiplayer-header .lead[b-rca5ph5goc] {
    font-size: 1.3em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.alert[b-rca5ph5goc] {
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-danger[b-rca5ph5goc] {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
}

.alert-warning[b-rca5ph5goc] {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: none;
}

.btn-close[b-rca5ph5goc] {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close:hover[b-rca5ph5goc] {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .multiplayer-container[b-rca5ph5goc] {
        padding: 10px;
    }
    
    .multiplayer-header h1[b-rca5ph5goc] {
        font-size: 2.2em;
    }
    
    .multiplayer-header .lead[b-rca5ph5goc] {
        font-size: 1.1em;
    }
    
    .alert[b-rca5ph5goc] {
        margin: 0 10px 20px 10px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .multiplayer-header h1[b-rca5ph5goc] {
        font-size: 1.8em;
    }
    
    .multiplayer-header .lead[b-rca5ph5goc] {
        font-size: 1em;
    }
}
