@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg-primary: #0d1117;
    --bg-secondary: #010409;
    --bg-card: #161b22;
    --bg-input: #0d1117;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent-green: #3fb950;
    --accent-green-dim: rgba(63,185,80,0.12);
    --accent-cyan: #58a6ff;
    --accent-cyan-dim: rgba(88,166,255,0.12);
    --accent-orange: #d29922;
    --accent-orange-dim: rgba(210,153,34,0.12);
    --accent-red: #f85149;
    --accent-red-dim: rgba(248,81,73,0.12);
    --accent-purple: #bc8cff;
    --accent-purple-dim: rgba(188,140,255,0.12);
    --border-color: #30363d;
    --shadow: 0 8px 24px rgba(1,4,9,0.5);
    --radius: 8px;
    --radius-sm: 6px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Menlo', 'Consolas', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

code, pre, .timer, .card-number, input, textarea, .flag-form input {
    font-family: var(--font-mono);
}

::selection {
    background: var(--accent-cyan-dim);
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   MOTION (subtle only)
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(16px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes softPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 44px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.login-card h1 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.login-card .subtitle {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan-dim);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    text-decoration: none;
    background: var(--bg-card);
    color: var(--text-primary);
}

.btn:hover {
    border-color: var(--text-muted);
    background: #1c2230;
}

.btn-primary {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #06210c;
    width: 100%;
    font-weight: 600;
}

.btn-primary:hover {
    background: #46c95a;
    border-color: #46c95a;
    color: #06210c;
}

.btn-green {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #06210c;
    font-weight: 600;
}

.btn-green:hover {
    background: #46c95a;
    border-color: #46c95a;
    color: #06210c;
}

.btn-orange {
    background: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-orange:hover {
    background: var(--accent-orange-dim);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.78rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
    background: rgba(255,255,255,0.02);
}

.login-note {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.flash-error {
    background: var(--accent-red-dim);
    border: 1px solid rgba(248,81,73,0.4);
    color: var(--accent-red);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.82rem;
    text-align: left;
}

/* ============================================
   HEADER BAR
   ============================================ */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.header-title .shield-icon {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--accent-green);
    background: var(--bg-card);
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.timer {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    letter-spacing: 1px;
}

.timer.warning {
    color: var(--accent-orange);
    border-color: rgba(210,153,34,0.4);
}

.timer.critical {
    color: var(--accent-red);
    border-color: rgba(248,81,73,0.5);
    animation: softPulse 1.5s ease-in-out infinite;
}

.score-display {
    font-weight: 600;
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    gap: 8px;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    padding: 28px 24px;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease;
}

.section-title {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title .bracket { display: none; }

.section-title .tag {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.section-title.green { color: var(--accent-green); }
.section-title.orange { color: var(--accent-orange); }
.section-title.blue { color: var(--accent-cyan); }

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

/* ============================================
   CHALLENGE CARDS
   ============================================ */
.challenge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.15s, transform 0.15s;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
}

.challenge-card.newbie::before { background: var(--accent-green); }
.challenge-card.intermediate::before { background: var(--accent-orange); }
.challenge-card.grc::before { background: var(--accent-cyan); }

.challenge-card:hover {
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

.challenge-card.solved {
    border-color: rgba(63,185,80,0.5);
}

.challenge-card.submitted {
    border-color: rgba(88,166,255,0.5);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2px;
}

.card-number {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.badge-newbie { background: var(--accent-green-dim); color: var(--accent-green); }
.badge-intermediate { background: var(--accent-orange-dim); color: var(--accent-orange); }
.badge-grc { background: var(--accent-cyan-dim); color: var(--accent-cyan); }
.badge-solved { background: var(--accent-green); color: #06210c; }
.badge-submitted { background: var(--accent-cyan); color: #04203f; }
.badge-draft { background: var(--accent-orange-dim); color: var(--accent-orange); }

.card-points {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.card-description {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-actions .btn {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-size: 0.75rem;
    padding: 8px 12px;
}

/* ============================================
   FLAG FORM
   ============================================ */
.flag-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.flag-form input {
    flex: 1;
    padding: 8px 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.8rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.flag-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan-dim);
}

.flag-form button {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s;
}

.flag-form button:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.flag-form.disabled input,
.flag-form.disabled button {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================
   BOTTOM PANEL / TERMINAL
   ============================================ */
.bottom-panel {
    margin-top: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.panel-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0 4px;
}

.panel-tab {
    padding: 11px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
    font-family: var(--font-mono);
}

.panel-tab:hover {
    color: var(--text-primary);
}

.panel-tab.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.panel-content {
    min-height: 50vh;
}

.terminal-frame {
    width: 100%;
    height: 55vh;
    border: none;
    background: #000;
    display: none;
}

.terminal-frame.active {
    display: block;
}

.terminal-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55vh;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 24px;
}

/* ============================================
   GRC PANEL
   ============================================ */
.grc-panel {
    display: none;
    padding: 24px;
    animation: fadeIn 0.2s ease;
}

.grc-panel.active {
    display: block;
}

.grc-banner {
    background: var(--accent-orange-dim);
    border: 1px solid rgba(210,153,34,0.35);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    margin-bottom: 20px;
    color: var(--accent-orange);
    font-size: 0.78rem;
    font-weight: 500;
}

.grc-scenario {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-cyan);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.7;
    white-space: pre-wrap;
    color: var(--text-secondary);
}

.grc-question {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.grc-question h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.grc-question textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.88rem;
    line-height: 1.7;
    resize: vertical;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.grc-question textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan-dim);
}

.word-counter {
    margin-top: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: right;
}

.word-counter.met { color: var(--accent-green); }
.word-counter.unmet { color: var(--accent-orange); }

.grc-submit-area {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
}

.auto-save-indicator {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    animation: slideIn 0.2s ease;
    min-width: 280px;
    max-width: 420px;
    box-shadow: var(--shadow);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left-width: 3px;
}

.toast.success {
    border-left-color: var(--accent-green);
    color: var(--accent-green);
}

.toast.error {
    border-left-color: var(--accent-red);
    color: var(--accent-red);
}

.toast.info {
    border-left-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(1,4,9,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 640px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.2s ease;
}

.modal h3 {
    margin-bottom: 14px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.modal pre {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.6;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.modal-close {
    float: right;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

/* ============================================
   GUIDE PAGE
   ============================================ */
.guide-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.4s ease;
}

.guide-card h1 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.guide-card h2 {
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.guide-card p, .guide-card li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.guide-card ul, .guide-card ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.guide-card .highlight-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-cyan);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin: 16px 0;
}

.guide-card .warning-box {
    background: var(--accent-orange-dim);
    border: 1px solid rgba(210,153,34,0.3);
    border-left: 3px solid var(--accent-orange);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin: 16px 0;
    color: var(--accent-orange);
}

.guide-start-btn {
    margin-top: 32px;
    text-align: center;
}

/* ============================================
   TIME UP PAGE
   ============================================ */
.timeup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.timeup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 44px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.4s ease;
}

.timeup-card h1 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.timeup-card .final-score {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 20px 0;
    font-family: var(--font-mono);
}

.timeup-card .score-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.results-list {
    text-align: left;
    margin: 24px 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.82rem;
}

.result-item .status-solved {
    color: var(--accent-green);
    font-weight: 500;
}

.result-item .status-unsolved {
    color: var(--text-muted);
}

/* ============================================
   ADMIN
   ============================================ */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.admin-header {
    background: var(--bg-secondary);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-section h2 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.82rem;
}

.admin-table th {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
}

.admin-grc-answer {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    line-height: 1.7;
    max-height: 200px;
    overflow-y: auto;
}

.admin-score-input {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.admin-score-input input {
    width: 80px;
    padding: 6px 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
}

.typing-metrics {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.typing-metrics .suspicious {
    color: var(--accent-red);
    font-weight: 600;
}

.extend-time-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.extend-time-form input {
    width: 100px;
    padding: 8px 12px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .login-card {
        padding: 32px 24px;
    }

    .guide-card {
        padding: 24px;
    }

    .modal {
        margin: 16px;
        padding: 20px;
    }

    .panel-tab {
        padding: 9px 12px;
        font-size: 0.72rem;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================
   SCORE UPDATE (subtle)
   ============================================ */
.score-animate {
    animation: scorePop 0.3s ease;
}

@keyframes scorePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--accent-green); }
    100% { transform: scale(1); }
}
