/* /Components/AboutModal.razor.rz.scp.css */
.about-container[b-g2kulkbg9h] {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
}

.josh-card[b-g2kulkbg9h] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.josh-header[b-g2kulkbg9h] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-container[b-g2kulkbg9h] {
    position: relative;
}

.josh-avatar[b-g2kulkbg9h] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(83, 74, 171) 0%, rgba(33,37,41,1) 100%);
    padding: 10px;
    box-shadow: 0 4px 20px rgba(83, 74, 171, 0.3);
    transition: transform 0.3s ease;
}

.josh-avatar:hover[b-g2kulkbg9h] {
    transform: scale(1.1) rotate(5deg);
}

.josh-info[b-g2kulkbg9h] {
    flex: 1;
}

.josh-name[b-g2kulkbg9h] {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.josh-title[b-g2kulkbg9h] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.josh-social[b-g2kulkbg9h] {
    display: flex;
    gap: 1rem;
}

.social-link[b-g2kulkbg9h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover[b-g2kulkbg9h] {
    background: #302b63;
    color: #ffffff;
    transform: translateY(-2px);
}

.josh-content[b-g2kulkbg9h] {
    display: grid;
    gap: 2rem;
}

.josh-description[b-g2kulkbg9h] {
    line-height: 1.6;
}

.josh-description .lead[b-g2kulkbg9h] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.josh-description p[b-g2kulkbg9h] {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.skills-title[b-g2kulkbg9h] {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.skills-grid[b-g2kulkbg9h] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-badge[b-g2kulkbg9h] {
    background: linear-gradient(135deg, #302b63, #24243e);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.skill-badge:hover[b-g2kulkbg9h] {
    transform: translateY(-2px);
}

.josh-stats[b-g2kulkbg9h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat-item[b-g2kulkbg9h] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-item i[b-g2kulkbg9h] {
    font-size: 1.1rem;
}

.josh-footer[b-g2kulkbg9h] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.btn-cosmic[b-g2kulkbg9h] {
    background: linear-gradient(135deg, #302b63, #0f0c29);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(48, 43, 99, 0.3);
}

.btn-cosmic:hover[b-g2kulkbg9h] {
    background: linear-gradient(135deg, #3d3470, #1a1635);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 43, 99, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .josh-header[b-g2kulkbg9h] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .josh-avatar[b-g2kulkbg9h] {
        width: 60px;
        height: 60px;
    }

    .josh-name[b-g2kulkbg9h] {
        font-size: 1.5rem;
    }

    .josh-stats[b-g2kulkbg9h] {
        grid-template-columns: 1fr;
    }

    .skills-grid[b-g2kulkbg9h] {
        justify-content: center;
    }
}
/* /Components/HelpModal.razor.rz.scp.css */
/* Help Modal Styles */
.help-container[b-9e8aih4hc9] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Modal Header integrated into body */
.help-modal-header[b-9e8aih4hc9] {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.help-modal-title[b-9e8aih4hc9] {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Modal Footer integrated into body */
.help-modal-footer[b-9e8aih4hc9] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-play[b-9e8aih4hc9] {
    background: #0d6efd;
    border: 1px solid #0d6efd;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    font-size: 1.1rem;
}

.btn-play:hover[b-9e8aih4hc9] {
    background: #0b5ed7;
    border-color: #0a58ca;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Section Styles */
.help-section[b-9e8aih4hc9] {
    margin-bottom: 2rem;
}

.help-section:last-child[b-9e8aih4hc9] {
    margin-bottom: 1rem;
}

.section-header[b-9e8aih4hc9] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-icon[b-9e8aih4hc9] {
    font-size: 1.25rem;
    color: #17a2b8;
    margin-right: 0.75rem;
}

.section-title[b-9e8aih4hc9] {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Quick Start Section */
.quick-start-card[b-9e8aih4hc9] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.step-list[b-9e8aih4hc9] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item[b-9e8aih4hc9] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number[b-9e8aih4hc9] {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.step-text[b-9e8aih4hc9] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.timer-demo[b-9e8aih4hc9] {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-icon[b-9e8aih4hc9] {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.timer-text[b-9e8aih4hc9] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.timer-label[b-9e8aih4hc9] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rules Section */
.rules-grid[b-9e8aih4hc9] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.rule-card[b-9e8aih4hc9] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.rule-card:hover[b-9e8aih4hc9] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.rule-important[b-9e8aih4hc9] {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
}

.rule-icon[b-9e8aih4hc9] {
    font-size: 1.25rem;
    color: #17a2b8;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.rule-important .rule-icon[b-9e8aih4hc9] {
    color: #ffc107;
}

.rule-content strong[b-9e8aih4hc9] {
    color: #ffffff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.rule-content p[b-9e8aih4hc9] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Ass Types Section */
.ass-types-grid[b-9e8aih4hc9] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ass-type-card[b-9e8aih4hc9] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.ass-type-card:hover[b-9e8aih4hc9] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.legendary-card[b-9e8aih4hc9] {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.rare-card[b-9e8aih4hc9] {
    border-color: rgba(138, 43, 226, 0.3);
    background: rgba(138, 43, 226, 0.05);
}

.ass-type-header[b-9e8aih4hc9] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ass-type-image[b-9e8aih4hc9] {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    flex-shrink: 0;
}

.ass-type-info[b-9e8aih4hc9] {
    flex: 1;
}

.ass-type-name[b-9e8aih4hc9] {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.ass-type-points[b-9e8aih4hc9] {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.points-value[b-9e8aih4hc9] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffc107;
}

.points-text[b-9e8aih4hc9] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.ass-type-rarity[b-9e8aih4hc9] {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legendary-card .ass-type-rarity[b-9e8aih4hc9] {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    animation: legendary-glow-b-9e8aih4hc9 2s ease-in-out infinite alternate;
}

.rare-card .ass-type-rarity[b-9e8aih4hc9] {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #ffffff;
}

@keyframes legendary-glow-b-9e8aih4hc9 {
    from { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

.ass-type-description[b-9e8aih4hc9] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
}

/* Pro Tips Section */
.tips-grid[b-9e8aih4hc9] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tip-item[b-9e8aih4hc9] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tip-item:hover[b-9e8aih4hc9] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tip-icon[b-9e8aih4hc9] {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.tip-content strong[b-9e8aih4hc9] {
    color: #ffffff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tip-content p[b-9e8aih4hc9] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Remove old modal-specific styles */
#helpModal .modal-body[b-9e8aih4hc9] {
    background: transparent;
    color: #ffffff;
    padding: 0;
}

#helpModal .modal-content[b-9e8aih4hc9] {
    background: transparent;
    border: none;
}

/* Custom Scrollbar */
.help-container[b-9e8aih4hc9]::-webkit-scrollbar {
    width: 6px;
}

.help-container[b-9e8aih4hc9]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.help-container[b-9e8aih4hc9]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.help-container[b-9e8aih4hc9]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-container[b-9e8aih4hc9] {
        padding: 1rem;
    }
    
    .help-modal-title[b-9e8aih4hc9] {
        font-size: 1.5rem;
    }
    
    .help-section[b-9e8aih4hc9] {
        margin-bottom: 1.5rem;
    }
    
    .quick-start-card[b-9e8aih4hc9] {
        padding: 1rem;
    }
    
    .step-item[b-9e8aih4hc9] {
        gap: 0.75rem;
    }
    
    .step-number[b-9e8aih4hc9] {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .timer-demo[b-9e8aih4hc9] {
        padding: 0.75rem;
        margin-top: 1rem;
    }
    
    .rules-grid[b-9e8aih4hc9],
    .tips-grid[b-9e8aih4hc9] {
        grid-template-columns: 1fr;
    }
    
    .ass-types-grid[b-9e8aih4hc9] {
        grid-template-columns: 1fr;
    }
    
    .ass-type-header[b-9e8aih4hc9] {
        gap: 0.75rem;
    }
    
    .ass-type-image[b-9e8aih4hc9] {
        width: 40px;
        height: 40px;
    }
    
    .btn-play[b-9e8aih4hc9] {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-header[b-9e8aih4hc9] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-icon[b-9e8aih4hc9] {
        margin-right: 0.5rem;
    }
    
    .step-item[b-9e8aih4hc9] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rule-card[b-9e8aih4hc9],
    .tip-item[b-9e8aih4hc9] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .ass-type-header[b-9e8aih4hc9] {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
/* /Components/LeaderboardModal.razor.rz.scp.css */
[b-0vfes0pflj] .modal-dialog {
    max-width: 800px;
}

.leaderboard-container[b-0vfes0pflj] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    min-height: 300px;
}

.leaderboard-content[b-0vfes0pflj] {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.leaderboard-row[b-0vfes0pflj] {
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    padding: 0.75rem 0.5rem !important;
}

.leaderboard-row:hover[b-0vfes0pflj] {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.top-score[b-0vfes0pflj] {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    margin: 0 -8px;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.top-score:hover[b-0vfes0pflj] {
    background: rgba(255, 215, 0, 0.15);
}

.row.align-items-center:hover:not(.top-score)[b-0vfes0pflj] {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 0 -4px;
    padding-left: 4px !important;
    padding-right: 4px !important;
}

/* Big Rounded Button Styles */
.leaderboard-actions[b-0vfes0pflj] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-big-rounded[b-0vfes0pflj] {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-big-rounded:hover[b-0vfes0pflj] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-big-rounded:active[b-0vfes0pflj] {
    transform: translateY(0);
}

.btn-big-rounded.btn-primary[b-0vfes0pflj] {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-color: #0d6efd;
    color: #ffffff;
}

.btn-big-rounded.btn-primary:hover[b-0vfes0pflj] {
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    border-color: #0b5ed7;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-big-rounded.btn-secondary[b-0vfes0pflj] {
    background: linear-gradient(135deg, #6c757d, #5c636a);
    border-color: #6c757d;
    color: #ffffff;
}

.btn-big-rounded.btn-secondary:hover[b-0vfes0pflj] {
    background: linear-gradient(135deg, #5c636a, #495057);
    border-color: #5c636a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.btn-big-rounded i[b-0vfes0pflj] {
    transition: transform 0.3s ease;
}

.btn-big-rounded:hover i[b-0vfes0pflj] {
    transform: scale(1.1);
}

.btn-big-rounded.btn-primary:hover i.fa-sync-alt[b-0vfes0pflj] {
    animation: spin-b-0vfes0pflj 1s linear infinite;
}

@keyframes spin-b-0vfes0pflj {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
.leaderboard-content[b-0vfes0pflj]::-webkit-scrollbar {
    width: 6px;
}

.leaderboard-content[b-0vfes0pflj]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.leaderboard-content[b-0vfes0pflj]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.leaderboard-content[b-0vfes0pflj]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .leaderboard-content .col-2:nth-child(5)[b-0vfes0pflj] {
        display: none; /* Hide CPS on smaller screens */
    }
    .leaderboard-content .col-2:nth-child(6)[b-0vfes0pflj] {
        font-size: 0.8rem;
    }
    
    .leaderboard-actions[b-0vfes0pflj] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-big-rounded[b-0vfes0pflj] {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .leaderboard-content .row .col-2:nth-child(4)[b-0vfes0pflj] {
        display: none; /* Hide Clicks on mobile */
    }
    .leaderboard-content .row .col-1[b-0vfes0pflj] {
        flex: 0 0 auto;
        width: 10%;
    }
    .leaderboard-content .row .col-3[b-0vfes0pflj] {
        flex: 0 0 auto;
        width: 40%;
    }
    .leaderboard-content .row .col-2[b-0vfes0pflj] {
        flex: 0 0 auto;
        width: 25%;
    }
    
    .btn-big-rounded[b-0vfes0pflj] {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}
/* /Components/Navbar.razor.rz.scp.css */
.game-navbar[b-ns0f58qbqz] {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(82, 109, 255, 0.1);
}

.game-logo[b-ns0f58qbqz] {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.game-logo a:hover[b-ns0f58qbqz] {
    opacity: 0.9;
}

.nav-button[b-ns0f58qbqz] {
    background: rgba(82, 109, 255, 0.1);
    border: 2px solid rgba(82, 109, 255, 0.2);
    color: white;
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-button:hover[b-ns0f58qbqz] {
    background: rgba(82, 109, 255, 0.2);
    border-color: rgba(82, 109, 255, 0.4);
    transform: scale(1.1);
    color: #fff;
}

/* Mobile-specific adjustments */
@media (max-width: 380px) {
    .nav-button[b-ns0f58qbqz] {
        border-width: 1px;
    }
} 
/* /Components/ResultsModal.razor.rz.scp.css */
/* Results Container - More compact */
.results-container[b-b4jynu3f47] {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 0.25rem;
}

/* Score Summary Card - More Compact */
.score-summary-card[b-b4jynu3f47] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem; /* Reduced from 1.25rem */
    margin-bottom: 0.75rem; /* Reduced from 1rem */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.score-display[b-b4jynu3f47] {
    position: relative;
}

.score-number[b-b4jynu3f47] {
    font-size: 3rem; /* Reduced from 3.5rem */
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.score-label[b-b4jynu3f47] {
    font-size: 0.95rem; /* Reduced from 1rem */
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

/* Enhanced Performance Stats - 4 items layout */
.performance-stats-compact[b-b4jynu3f47] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; /* Reduced from 1.5rem */
    padding: 0.75rem 0; /* Reduced from 1rem */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-compact[b-b4jynu3f47] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-compact i[b-b4jynu3f47] {
    font-size: 1.1rem; /* Reduced from 1.25rem */
}

.stat-compact .stat-value[b-b4jynu3f47] {
    font-size: 1.1rem; /* Reduced from 1.25rem */
    font-weight: 700;
    color: #ffffff;
}

.stat-compact .stat-label[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Score Message - Compact */
.score-message[b-b4jynu3f47] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem; /* Reduced from 0.75rem 1rem */
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem; /* Reduced from 0.95rem */
    font-style: italic;
}

/* Action Buttons */
.action-buttons[b-b4jynu3f47] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.action-buttons .btn[b-b4jynu3f47] {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Breakdown Section - Compact */
.breakdown-section-compact[b-b4jynu3f47] {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem; /* Reduced from 1rem */
}

.breakdown-grid-compact[b-b4jynu3f47] {
    display: grid;
    gap: 0.5rem;
    max-height: 250px; /* Reduced from 300px */
    overflow-y: auto;
}

/* New 2x3 Grid Layout for Breakdown */
.breakdown-grid-2x3[b-b4jynu3f47] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem; /* Reduced from 0.75rem */
    max-height: 250px; /* Reduced from 300px */
    overflow-y: auto;
}

@media (max-width: 768px) {
    .breakdown-grid-2x3[b-b4jynu3f47] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .breakdown-grid-2x3[b-b4jynu3f47] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.breakdown-item-compact[b-b4jynu3f47] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem; /* Reduced from 0.75rem */
    transition: all 0.2s ease;
}

.breakdown-item-compact:hover[b-b4jynu3f47] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

.breakdown-content[b-b4jynu3f47] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem; /* Reduced from 0.5rem */
    text-align: center;
}

.breakdown-icon-compact[b-b4jynu3f47] {
    width: 35px; /* Reduced from 40px */
    height: 35px; /* Reduced from 40px */
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
    object-fit: contain;
}

.breakdown-details[b-b4jynu3f47] {
    min-width: 0;
    width: 100%;
}

.breakdown-points[b-b4jynu3f47] {
    margin-top: 0.25rem;
}

.points-text[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: #ffd700;
    font-weight: 600;
}

.breakdown-name-compact[b-b4jynu3f47] {
    font-weight: 600;
    font-size: 0.85rem; /* Reduced from 0.9rem */
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.breakdown-stats-compact[b-b4jynu3f47] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem; /* Reduced from 0.5rem */
    margin-bottom: 0.25rem;
}

.badge-sm[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    padding: 0.2rem 0.4rem; /* Reduced from 0.25rem 0.5rem */
}

.percentage-text[b-b4jynu3f47] {
    font-size: 0.75rem; /* Reduced from 0.8rem */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.breakdown-bar-compact[b-b4jynu3f47] {
    width: 60px;
    flex-shrink: 0;
}

.progress-thin[b-b4jynu3f47] {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-thin .progress-bar[b-b4jynu3f47] {
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Chart Section Styles - More compact */
.chart-section-compact[b-b4jynu3f47] {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem; /* Reduced from 1rem */
}

.chart-container[b-b4jynu3f47] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem; /* Reduced from 1rem */
    margin-bottom: 0.5rem; /* Reduced from 0.75rem */
}

.chart-wrapper[b-b4jynu3f47] {
    position: relative;
    width: 100%;
    max-width: 450px; /* Reduced from 500px */
    margin: 0 auto;
}

.chart-grid[b-b4jynu3f47] {
    display: grid;
    grid-template-columns: 35px 1fr; /* Reduced from 40px */
    grid-template-rows: 1fr 25px; /* Reduced from 30px */
    gap: 6px; /* Reduced from 8px */
    align-items: stretch;
}

.chart-y-axis[b-b4jynu3f47] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 6px; /* Reduced from 8px */
    grid-row: 1;
}

.y-label[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    font-weight: 500;
}

.chart-area[b-b4jynu3f47] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    grid-row: 1;
    grid-column: 2;
    overflow: hidden;
}

.chart-svg[b-b4jynu3f47] {
    width: 100%;
    height: 150px; /* Reduced from 200px */
    display: block;
}

.chart-x-axis[b-b4jynu3f47] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 4px;
    grid-row: 2;
    grid-column: 2;
}

.x-label[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-align: center;
}

.chart-summary[b-b4jynu3f47] {
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 0.4rem 0.6rem; /* Reduced from 0.5rem 0.75rem */
}

.chart-summary .text-muted[b-b4jynu3f47] {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem; /* Reduced */
}

.chart-summary .fa-info-circle[b-b4jynu3f47] {
    color: #17a2b8;
}

/* Collapsible Headers */
.collapsible-header[b-b4jynu3f47] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    padding: 0.6rem; /* Reduced from 0.75rem */
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.4rem; /* Reduced from 0.5rem */
}

.collapsible-header:hover[b-b4jynu3f47] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.collapsible-header .section-title[b-b4jynu3f47] {
    display: flex;
    align-items: center;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem; /* Reduced from 1rem */
}

.collapsible-header .fas.fa-chevron-up[b-b4jynu3f47],
.collapsible-header .fas.fa-chevron-down[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease;
}

/* Collapse Transitions */
.collapse[b-b4jynu3f47] {
    transition: all 0.35s ease;
    overflow: hidden;
}

.collapse:not(.show)[b-b4jynu3f47] {
    display: none;
}

.collapse.show[b-b4jynu3f47] {
    display: block;
}

/* Stats Summary Grid */
.stats-summary-grid[b-b4jynu3f47] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem; /* Reduced from 1rem */
    padding: 0.75rem; /* Reduced from 1rem */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-summary-grid .stat-item[b-b4jynu3f47] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.stats-summary-grid .stat-item i[b-b4jynu3f47] {
    font-size: 1.1rem; /* Reduced from 1.25rem */
}

.stats-summary-grid .stat-item .stat-value[b-b4jynu3f47] {
    font-size: 1rem; /* Reduced from 1.1rem */
    font-weight: 700;
    color: #ffffff;
}

.stats-summary-grid .stat-item .stat-label[b-b4jynu3f47] {
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Chart Hover Effects */
.chart-svg circle[b-b4jynu3f47] {
    transition: r 0.2s ease, stroke-width 0.2s ease;
}

.chart-svg circle:hover[b-b4jynu3f47] {
    r: 5; /* Reduced from 6 */
    stroke-width: 3;
}

/* Modal Specific Styles - Updated for modal-body only design */
#resultsModal .modal-body[b-b4jynu3f47],
#leaderboardModal .modal-body[b-b4jynu3f47],
#saveScoreModal .modal-body[b-b4jynu3f47],
#aboutModal .modal-body[b-b4jynu3f47] {
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 0.5rem;
}

#resultsModal .modal-content[b-b4jynu3f47],
#leaderboardModal .modal-content[b-b4jynu3f47],
#saveScoreModal .modal-content[b-b4jynu3f47],
#aboutModal .modal-content[b-b4jynu3f47] {
    background: transparent;
    border: none;
    max-height: 90vh;
}

/* Custom Scrollbar */
.results-container[b-b4jynu3f47]::-webkit-scrollbar,
.breakdown-grid-compact[b-b4jynu3f47]::-webkit-scrollbar,
.leaderboard-content[b-b4jynu3f47]::-webkit-scrollbar {
    width: 4px;
}

.results-container[b-b4jynu3f47]::-webkit-scrollbar-track,
.breakdown-grid-compact[b-b4jynu3f47]::-webkit-scrollbar-track,
.leaderboard-content[b-b4jynu3f47]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.results-container[b-b4jynu3f47]::-webkit-scrollbar-thumb,
.breakdown-grid-compact[b-b4jynu3f47]::-webkit-scrollbar-thumb,
.leaderboard-content[b-b4jynu3f47]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.results-container[b-b4jynu3f47]::-webkit-scrollbar-thumb:hover,
.breakdown-grid-compact[b-b4jynu3f47]::-webkit-scrollbar-thumb:hover,
.leaderboard-content[b-b4jynu3f47]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .score-number[b-b4jynu3f47] {
        font-size: 2.5rem;
    }
    
    .score-summary-card[b-b4jynu3f47] {
        padding: 0.75rem; /* Reduced from 1rem */
    }
    
    .performance-stats-compact[b-b4jynu3f47] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem; /* Reduced from 1rem */
        padding: 0.6rem 0; /* Reduced from 0.75rem */
    }
    
    .stat-compact .stat-value[b-b4jynu3f47] {
        font-size: 1rem; /* Reduced from 1.1rem */
    }
    
    .action-buttons[b-b4jynu3f47] {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .action-buttons .btn[b-b4jynu3f47] {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .breakdown-content[b-b4jynu3f47] {
        gap: 0.4rem; /* Reduced from 0.5rem */
    }
    
    .breakdown-bar-compact[b-b4jynu3f47] {
        width: 40px;
    }

    /* Stats grid responsive */
    .stats-summary-grid[b-b4jynu3f47] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem; /* Reduced from 0.75rem */
        padding: 0.6rem; /* Reduced from 0.75rem */
    }
    
    .stats-summary-grid .stat-item .stat-value[b-b4jynu3f47] {
        font-size: 0.95rem; /* Reduced from 1rem */
    }

    /* Chart responsive styles */
    .chart-grid[b-b4jynu3f47] {
        grid-template-columns: 30px 1fr; /* Reduced from 35px */
    }
    
    .y-label[b-b4jynu3f47], .x-label[b-b4jynu3f47] {
        font-size: 0.65rem; /* Reduced from 0.7rem */
    }
    
    .chart-summary[b-b4jynu3f47] {
        padding: 0.35rem 0.45rem; /* Reduced from 0.4rem 0.5rem */
    }
    
    /* Collapsible headers responsive */
    .collapsible-header[b-b4jynu3f47] {
        padding: 0.45rem; /* Reduced from 0.5rem */
    }
    
    .collapsible-header .section-title[b-b4jynu3f47] {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .performance-stats-compact[b-b4jynu3f47] {
        grid-template-columns: 1fr;
        gap: 0.6rem; /* Reduced from 0.75rem */
        padding: 0.4rem 0; /* Reduced from 0.5rem */
    }
    
    .stat-compact[b-b4jynu3f47] {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .breakdown-content[b-b4jynu3f47] {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    
    .breakdown-bar-compact[b-b4jynu3f47] {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0.5rem;
    }

    /* Stats grid mobile */
    .stats-summary-grid[b-b4jynu3f47] {
        grid-template-columns: 1fr;
        gap: 0.4rem; /* Reduced from 0.5rem */
        padding: 0.4rem; /* Reduced from 0.5rem */
    }
    
    .stats-summary-grid .stat-item[b-b4jynu3f47] {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    /* Chart mobile styles */
    .chart-grid[b-b4jynu3f47] {
        grid-template-columns: 25px 1fr; /* Reduced from 30px */
        grid-template-rows: 1fr 20px; /* Reduced from 25px */
    }
    
    .chart-svg[b-b4jynu3f47] {
        height: 120px; /* Reduced from 150px */
    }
    
    .chart-container[b-b4jynu3f47] {
        padding: 0.6rem; /* Reduced from 0.75rem */
    }

    .action-buttons[b-b4jynu3f47] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .action-buttons .btn[b-b4jynu3f47] {
        width: 100%;
    }
}
/* /Components/SaveScoreModal.razor.rz.scp.css */
.save-score-container[b-k9g9jyxa74] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
}

.save-score-container .form-control[b-k9g9jyxa74] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.save-score-container .form-control:focus[b-k9g9jyxa74] {
    background: rgba(255, 255, 255, 0.15);
    border-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.save-score-container .form-control[b-k9g9jyxa74]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-v8q5m4zhkd] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-v8q5m4zhkd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-v8q5m4zhkd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-v8q5m4zhkd]  a, .top-row[b-v8q5m4zhkd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-v8q5m4zhkd]  a:hover, .top-row[b-v8q5m4zhkd]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-v8q5m4zhkd]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-v8q5m4zhkd] {
        justify-content: space-between;
    }

    .top-row[b-v8q5m4zhkd]  a, .top-row[b-v8q5m4zhkd]  .btn-link {
        margin-left: 0;
    }
}

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

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

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

    .top-row.auth[b-v8q5m4zhkd]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

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

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

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

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

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

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

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

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

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

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

    .collapse[b-d13n4iuesv] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-d13n4iuesv] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.game-container[b-qkqvtk7xtj] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #e2e2e2;
}

.game-title[b-qkqvtk7xtj] {
    text-shadow: 0 0 20px rgba(82, 109, 255, 0.3);
    color: #fff;
}

.game-info-bar[b-qkqvtk7xtj] {
    gap: 2rem;
    margin-top: 1rem;
    /* Always keep flex-direction: row (default) to maintain side-by-side layout */
}

.timer-container[b-qkqvtk7xtj], .stats-container[b-qkqvtk7xtj] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer[b-qkqvtk7xtj] {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(82, 109, 255, 0.1);
    border: 2px solid rgba(82, 109, 255, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.timer-warning[b-qkqvtk7xtj] {
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.4);
    background: rgba(255, 71, 87, 0.1);
    animation: pulse-b-qkqvtk7xtj 1s infinite;
}

.cps-display[b-qkqvtk7xtj] {
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    background: rgba(34, 139, 34, 0.1);
    border: 2px solid rgba(34, 139, 34, 0.2);
    border-radius: 1rem;
    padding: 0.4rem 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.cps-display .stat-value[b-qkqvtk7xtj] {
    color: #32CD32;
}

.game-display[b-qkqvtk7xtj] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(82, 109, 255, 0.1);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.game-display:hover[b-qkqvtk7xtj], .game-display:focus[b-qkqvtk7xtj] {
    transform: scale(1.02);
    border-color: rgba(82, 109, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.game-display:active[b-qkqvtk7xtj] {
    transform: scale(0.98);
}

.start-prompt[b-qkqvtk7xtj] {
    animation: bounce-b-qkqvtk7xtj 1s infinite;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pulse-b-qkqvtk7xtj {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

@keyframes bounce-b-qkqvtk7xtj {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile-specific adjustments - Keep side by side but reduce spacing and sizes */
@media (max-width: 768px) {
    .game-info-bar[b-qkqvtk7xtj] {
        gap: 1rem;
        /* Removed flex-direction: column to keep side-by-side layout */
    }
    
    .timer[b-qkqvtk7xtj] {
        padding: 0.4rem 1rem;
        font-size: clamp(1.2rem, 3.5vw, 2rem);
    }
    
    .cps-display[b-qkqvtk7xtj] {
        padding: 0.3rem 0.8rem;
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
}

/* Small mobile adjustments - Even more compact but still side by side */
@media (max-width: 480px) {
    .game-info-bar[b-qkqvtk7xtj] {
        gap: 0.5rem;
    }
    
    .timer[b-qkqvtk7xtj] {
        padding: 0.3rem 0.8rem;
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .cps-display[b-qkqvtk7xtj] {
        padding: 0.25rem 0.6rem;
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }
}

/* Extra small screens - Ultra compact side by side */
@media (max-width: 320px) {
    .game-info-bar[b-qkqvtk7xtj] {
        gap: 0.25rem;
    }
    
    .timer[b-qkqvtk7xtj] {
        padding: 0.25rem 0.6rem;
    }
    
    .cps-display[b-qkqvtk7xtj] {
        padding: 0.2rem 0.5rem;
    }
}
