/* ============================================
   YARISMA - Bilgi Yarismasi Platformu
   Modern Kahoot-style Theme
   ============================================ */

:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --secondary: #00CEC9;
    --accent: #FD79A8;
    --success: #00B894;
    --warning: #FDCB6E;
    --danger: #FF7675;
    --info: #0984E3;
    --dark: #2D3436;
    --darker: #1E272E;
    --light: #DFE6E9;
    --white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #6C5CE7 0%, #a855f7 50%, #EC4899 100%);
    --bg-game: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --card-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Answer option colors */
    --opt-a: #E53E3E;
    --opt-a-hover: #C53030;
    --opt-b: #3182CE;
    --opt-b-hover: #2B6CB0;
    --opt-c: #D69E2E;
    --opt-c-hover: #B7791F;
    --opt-d: #38A169;
    --opt-d-hover: #2F855A;
}

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

body {
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-gradient);
    color: var(--dark);
    min-height: 100vh;
    line-height: 1.6;
}

body.game-mode {
    background: var(--bg-game);
    color: var(--white);
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 700; }
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container-sm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ---- Card ---- */
.card {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 32px;
    transition: var(--transition);
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--card-radius);
    padding: 32px;
    color: var(--white);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}
.btn-secondary:hover { background: #00b5b0; }

.btn-success {
    background: var(--success);
    color: var(--white);
}
.btn-success:hover { background: #00a384; }

.btn-danger {
    background: var(--danger);
    color: var(--white);
}
.btn-danger:hover { background: #e66767; }

.btn-warning {
    background: var(--warning);
    color: var(--dark);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-block { width: 100%; }

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
}

/* ---- Forms ---- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}

.form-control-lg {
    padding: 18px 24px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* ---- Badges ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-primary { background: rgba(108,92,231,0.15); color: var(--primary); }
.badge-success { background: rgba(0,184,148,0.15); color: var(--success); }
.badge-warning { background: rgba(253,203,110,0.3); color: #b97a00; }
.badge-danger { background: rgba(255,118,117,0.15); color: var(--danger); }
.badge-info { background: rgba(9,132,227,0.15); color: var(--info); }

/* ---- Header / Nav ---- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.navbar-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* ---- Hero / Welcome ---- */
.hero {
    text-align: center;
    padding: 60px 20px;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

/* ---- Room Code Display ---- */
.room-code {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 8px;
    color: var(--warning);
    text-shadow: 0 4px 20px rgba(253,203,110,0.4);
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: inline-block;
}

/* ---- Answer Options Grid ---- */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.option-btn {
    padding: 24px;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}

.option-btn:hover::before {
    background: rgba(255,255,255,0.1);
}

.option-btn:active { transform: scale(0.97); }

.option-btn.selected {
    outline: 4px solid var(--white);
    outline-offset: -4px;
    transform: scale(1.02);
}

.option-btn.correct {
    outline: 4px solid var(--success);
    box-shadow: 0 0 30px rgba(0,184,148,0.5);
}

.option-btn.wrong {
    opacity: 0.5;
}

.option-a { background: var(--opt-a); }
.option-a:hover { background: var(--opt-a-hover); }
.option-b { background: var(--opt-b); }
.option-b:hover { background: var(--opt-b-hover); }
.option-c { background: var(--opt-c); }
.option-c:hover { background: var(--opt-c-hover); }
.option-d { background: var(--opt-d); }
.option-d:hover { background: var(--opt-d-hover); }

.option-shape {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.option-text {
    flex: 1;
    word-break: break-word;
}

/* ---- Timer ---- */
.timer-container {
    text-align: center;
    margin: 20px 0;
}

.timer-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    border: 4px solid var(--warning);
    position: relative;
}

.timer-circle.danger {
    border-color: var(--danger);
    animation: pulse 0.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ---- Progress Bar ---- */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 16px 0;
}

.progress-fill {
    height: 100%;
    background: var(--warning);
    border-radius: 4px;
    transition: width 1s linear;
}

.progress-fill.danger {
    background: var(--danger);
}

/* ---- Leaderboard ---- */
.leaderboard {
    list-style: none;
    padding: 0;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    animation: slideIn 0.4s ease backwards;
}

.leaderboard-item:nth-child(1) { animation-delay: 0s; }
.leaderboard-item:nth-child(2) { animation-delay: 0.1s; }
.leaderboard-item:nth-child(3) { animation-delay: 0.2s; }
.leaderboard-item:nth-child(4) { animation-delay: 0.3s; }
.leaderboard-item:nth-child(5) { animation-delay: 0.4s; }

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

.leaderboard-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.rank-1 { background: #FFD700; color: #333; }
.rank-2 { background: #C0C0C0; color: #333; }
.rank-3 { background: #CD7F32; color: #fff; }

.leaderboard-name {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
}

.leaderboard-score {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--warning);
}

.leaderboard-item.highlight {
    background: rgba(108,92,231,0.3);
    border: 2px solid var(--primary);
}

/* ---- Question Display ---- */
.question-box {
    text-align: center;
    padding: 40px 20px;
}

.question-number {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.question-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--white);
}

/* ---- Stats bars ---- */
.stats-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.stats-bar-label {
    width: 40px;
    font-weight: 700;
    font-size: 1.1rem;
}

.stats-bar-fill-container {
    flex: 1;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stats-bar-fill {
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-weight: 700;
    color: var(--white);
    transition: width 0.8s ease;
    min-width: 40px;
}

.stats-bar-fill.opt-a { background: var(--opt-a); }
.stats-bar-fill.opt-b { background: var(--opt-b); }
.stats-bar-fill.opt-c { background: var(--opt-c); }
.stats-bar-fill.opt-d { background: var(--opt-d); }

/* ---- Waiting animation ---- */
.waiting-dots {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
}
.waiting-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    animation: bounce 1.4s ease-in-out infinite;
}
.waiting-dots span:nth-child(2) { animation-delay: 0.2s; }
.waiting-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ---- Team chips ---- */
.team-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.team-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--white);
}

/* ---- Admin Table ---- */
.table-container {
    overflow-x: auto;
    border-radius: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.admin-table tr:hover td {
    background: #f8f9fa;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

/* ---- Modal ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 32px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover { background: #e0e0e0; }

/* ---- Feedback States ---- */
.feedback-correct {
    animation: correctFlash 0.5s ease;
}

@keyframes correctFlash {
    0%, 100% { background: transparent; }
    50% { background: rgba(0,184,148,0.3); }
}

.feedback-wrong {
    animation: wrongShake 0.5s ease;
}

@keyframes wrongShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ---- Confetti / Winner ---- */
.winner-section {
    text-align: center;
    padding: 40px 20px;
}

.winner-crown {
    font-size: 5rem;
    animation: crownFloat 2s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.winner-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 16px 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .question-text { font-size: 1.3rem; }
    .room-code { font-size: 2rem; letter-spacing: 4px; }
    .card { padding: 20px; }
    .card-glass { padding: 20px; }
    .options-grid { grid-template-columns: 1fr; gap: 12px; }
    .option-btn { padding: 18px; font-size: 1rem; min-height: 60px; }
    .timer-circle { width: 70px; height: 70px; font-size: 2rem; }
    .navbar { padding: 12px 16px; }
    .navbar-brand { font-size: 1.2rem; }
    .container { padding: 12px; }
    .btn-lg { padding: 14px 24px; font-size: 1rem; }
    .admin-table th, .admin-table td { padding: 10px 12px; font-size: 0.85rem; }

    .navbar-links { gap: 4px; }
    .navbar-links a { padding: 6px 10px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 1rem; }
    .question-text { font-size: 1.1rem; }
    .room-code { font-size: 1.6rem; letter-spacing: 3px; padding: 14px; }
    .option-btn { padding: 14px; }
    .leaderboard-item { padding: 12px; gap: 10px; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(108,92,231,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108,92,231,0.5); }

/* ---- Loading spinner ---- */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Toast notifications ---- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    animation: toastIn 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--info); }

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

/* ---- Broadcast specific ---- */
.broadcast-header {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    margin-bottom: 24px;
}

.broadcast-question {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    padding: 40px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .broadcast-question { font-size: 1.4rem; padding: 20px; }
}

/* ---- Admin sidebar ---- */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--darker);
    color: var(--white);
    padding: 24px 16px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar .brand {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 32px;
    padding: 0 8px;
    color: var(--warning);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 4px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.admin-main {
    padding: 32px;
    background: #f5f6fa;
    overflow-y: auto;
}

.admin-main h1 {
    color: var(--dark);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: fixed;
        left: -280px;
        z-index: 200;
        transition: var(--transition);
        width: 260px;
    }

    .admin-sidebar.open {
        left: 0;
    }

    .sidebar-toggle {
        display: flex !important;
    }

    .admin-main {
        padding: 16px;
    }
}

.sidebar-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 201;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.3rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Admin stat cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* ---- Answer result overlay ---- */
.result-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    animation: fadeIn 0.3s ease;
}

.result-correct {
    background: rgba(0, 184, 148, 0.95);
}

.result-wrong {
    background: rgba(255, 118, 117, 0.95);
}

.result-content {
    text-align: center;
    color: var(--white);
}

.result-icon {
    font-size: 5rem;
    margin-bottom: 16px;
}

.result-text {
    font-size: 2rem;
    font-weight: 800;
}

.result-points {
    font-size: 1.2rem;
    margin-top: 8px;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
