/* ============================================
   CyberJack – Bugfix Overrides
   Applied after style.css
   ============================================ */

/* FIX Bug 2: Hide streak display completely */
.streak-display {
    display: none !important;
}
.result-streak {
    display: none !important;
}

/* FIX Bug 3: Achievement items – bigger boxes, text wrapping */
.achievement-item {
    min-height: 60px;
    padding: 0.75rem 0.85rem;
}

.achievement-item .ach-name {
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

.achievement-item .ach-desc {
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

/* FIX Bug 6: Desktop screen width – match screenshot (~640px) */
@media (min-width: 768px) {
    #app-screen {
        max-width: 640px;
    }
    
    #auth-screen, #tutorial-screen {
        max-width: 640px;
    }
}
