/* assets/css/trivia-game.css */

/* ============================================
   BASE STYLES & RESET
   ============================================ */

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

#artemis-trivia-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050A12;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.trivia-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(47, 240, 255, 0.2);
    border-top-color: rgba(47, 240, 255, 1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* ============================================
   STARFIELD BACKGROUND
   ============================================ */

.trivia-starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.star.small {
    width: 1px;
    height: 1px;
    opacity: 0.5;
}

.star.medium {
    width: 2px;
    height: 2px;
    opacity: 0.7;
}

.star.large {
    width: 3px;
    height: 3px;
    opacity: 0.9;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.trivia-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    overflow-y: auto;
}

@media (min-width: 769px) {
    .trivia-container {
        justify-content: flex-start;
        overflow-y: auto;
        padding: 10px;
    }
}

/* ============================================
   START SCREEN
   ============================================ */

.trivia-start-screen {
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 4px;
    height: 100vh;
    justify-content: space-between;
}

.trivia-logo {
    display: none;
}

.trivia-title {
    display: none;
}

.trivia-subtitle {
    display: none;
}

.difficulty-selector {
    margin: 0;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.difficulty-selector h3 {
    font-size: 0.9em;
    margin-bottom: 12px;
    margin-top: 0;
    color: rgba(47, 240, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    flex-shrink: 0;
}

.difficulty-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
}

.difficulty-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.difficulty-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(47, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.difficulty-option:hover::before {
    left: 100%;
}

.difficulty-option:hover {
    border-color: rgba(47, 240, 255, 0.8);
    background: rgba(47, 240, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(47, 240, 255, 0.2);
}

.difficulty-option.selected {
    border-color: rgba(47, 240, 255, 1);
    background: rgba(47, 240, 255, 0.1);
    box-shadow: 0 0 30px rgba(47, 240, 255, 0.3),
                inset 0 0 20px rgba(47, 240, 255, 0.1);
}

.difficulty-option-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.difficulty-icon {
    font-size: 1.1em;
    flex-shrink: 0;
}

.difficulty-name {
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
}

.difficulty-time {
    margin-left: auto;
    font-size: 0.75em;
    color: rgba(47, 240, 255, 0.8);
    background: rgba(47, 240, 255, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.difficulty-description {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    text-align: left;
    margin: 0;
}

/* ============================================
   BUTTONS & BUTTON GROUPS
   ============================================ */

.trivia-button {
    background: linear-gradient(135deg, rgba(47, 240, 255, 0.2), rgba(47, 240, 255, 0.1));
    border: 2px solid rgba(47, 240, 255, 0.6);
    color: #ffffff;
    font-size: 1em;
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 5px 0;
    box-shadow: 0 4px 15px rgba(47, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.trivia-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(47, 240, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.trivia-button:hover::before {
    width: 300px;
    height: 300px;
}

.trivia-button:hover {
    border-color: rgba(47, 240, 255, 1);
    box-shadow: 0 6px 25px rgba(47, 240, 255, 0.4);
    transform: translateY(-2px);
}

.trivia-button:active {
    transform: translateY(0);
}

.trivia-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.trivia-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 0.9em;
    padding: 10px 25px;
}

.trivia-button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Horizontal button group (both start and results screens) */
.button-group-horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-shrink: 0;
    padding: 10px;
}

.button-group-horizontal .trivia-button {
    margin: 0;
    padding: 11px 20px;
    font-size: 0.9em;
    flex: 1;
    max-width: 350px;
    min-width: 150px;
}

/* ============================================
   GAME SCREEN
   ============================================ */

.trivia-game-screen {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease-in;
}

@media (min-width: 769px) {
    .trivia-game-screen {
        max-height: 95vh;
    }
}

/* Header HUD */
.trivia-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hud-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hud-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hud-value {
    font-size: 1.4em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
    text-shadow: 0 0 10px rgba(47, 240, 255, 0.5);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2FF0FF, #00C4D4);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(47, 240, 255, 0.6);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Question Card */
.question-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s ease-out;
}

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

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(47, 240, 255, 0.2);
}

.question-number {
    font-size: 1em;
    color: rgba(47, 240, 255, 0.8);
    font-weight: 600;
}

.question-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2em;
    font-weight: 700;
}

.timer-icon {
    animation: pulse 1s infinite;
}

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

.timer-value {
    color: rgba(47, 240, 255, 1);
    min-width: 50px;
    text-align: center;
}

.timer-value.warning {
    color: #FF6B6B;
    animation: warningPulse 0.5s infinite;
}

@keyframes warningPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Larger question text with !important to override theme */
#artemis-trivia-root .question-text,
.trivia-game-screen .question-text,
p.question-text {
    font-size: 1.4em !important;  /* Force the size */
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff !important;
    font-weight: 700 !important;  /* Also force bold */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7),
                 0 0 30px rgba(47, 240, 255, 0.5),
                 0 0 50px rgba(47, 240, 255, 0.3);
    letter-spacing: 0.5px;
}

/* Mobile adjustments - also with !important */
@media (max-width: 768px) {
    #artemis-trivia-root .question-text,
    .trivia-game-screen .question-text,
    p.question-text {
        font-size: 2.1em !important;
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    #artemis-trivia-root .question-text,
    .trivia-game-screen .question-text,
    p.question-text {
        font-size: 1.9em !important;
        color: #ffffff !important;
    }
}

/* Category badge - Subtle and understated */
.question-category {
    display: inline-block;
    font-size: 0.7em;
    color: rgba(47, 240, 255, 0.7);
    background: rgba(47, 240, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-left: 2px solid rgba(47, 240, 255, 0.4);
    box-shadow: none;
}

/* Answer Options */
.answer-options {
    display: grid;
    gap: 12px;
}

.answer-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 60px;
}

.answer-letter {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(47, 240, 255, 0.2);
    border: 2px solid rgba(47, 240, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    color: rgba(47, 240, 255, 1);
    flex-shrink: 0;
}

.answer-text {
    flex: 1;
    font-size: 1.05em;
    color: #ffffff;
    line-height: 1.4;
}

.answer-option:hover {
    border-color: rgba(47, 240, 255, 0.6);
    background: rgba(47, 240, 255, 0.08);
    transform: translateX(5px);
}

.answer-option.selected {
    border-color: rgba(47, 240, 255, 1);
    background: rgba(47, 240, 255, 0.15);
    box-shadow: 0 0 20px rgba(47, 240, 255, 0.3);
}

.answer-option.correct {
    border-color: #51CF66;
    background: rgba(81, 207, 102, 0.15);
    animation: correctPulse 0.6s ease;
}

.answer-option.correct .answer-letter {
    background: rgba(81, 207, 102, 0.3);
    border-color: #51CF66;
    color: #51CF66;
}

.answer-option.incorrect {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
    animation: shake 0.5s ease;
}

.answer-option.incorrect .answer-letter {
    background: rgba(255, 107, 107, 0.3);
    border-color: #FF6B6B;
    color: #FF6B6B;
}

@keyframes correctPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

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

.answer-option.disabled {
    pointer-events: none;
    opacity: 0.6;
}

/* ============================================
   RESULTS SCREEN
   ============================================ */

.trivia-results-screen {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
    padding: 20px 20px 120px 20px;
    overflow-y: auto;
    max-height: 95vh;
}

.results-header {
    margin-bottom: 30px;
}

.results-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2FF0FF, #00C4D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
}

.results-score-display {
    margin: 30px 0;
}

.final-score {
    font-size: 3.5em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
    text-shadow: 0 0 30px rgba(47, 240, 255, 0.6);
    margin-bottom: 8px;
}

.score-label {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.stat-value {
    font-size: 1.8em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.name-entry-panel {
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 12px;
}

.name-entry-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: rgba(47, 240, 255, 0.9);
}

.name-input {
    width: 100%;
    max-width: 300px;
    padding: 12px 18px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(47, 240, 255, 0.5);
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.name-input:focus {
    outline: none;
    border-color: rgba(47, 240, 255, 1);
    box-shadow: 0 0 20px rgba(47, 240, 255, 0.3);
}

.name-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.name-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rank-display {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.rank-item {
    text-align: center;
}

.rank-value {
    font-size: 2.2em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
}

.rank-label {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   LEADERBOARD
   ============================================ */

.leaderboard-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: rgba(5, 10, 18, 0.98);
    border-left: 2px solid rgba(47, 240, 255, 0.5);
    padding: 30px;
    overflow-y: auto;
    z-index: 100;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.leaderboard-panel.open {
    right: 0;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(47, 240, 255, 0.3);
}

.leaderboard-title {
    font-size: 1.8em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
}

.close-leaderboard {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-leaderboard:hover {
    color: rgba(47, 240, 255, 1);
    transform: rotate(90deg);
}

.leaderboard-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.filter-button {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-button:hover {
    border-color: rgba(47, 240, 255, 0.5);
    color: rgba(47, 240, 255, 0.8);
}

.filter-button.active {
    background: rgba(47, 240, 255, 0.15);
    border-color: rgba(47, 240, 255, 1);
    color: rgba(47, 240, 255, 1);
}

.leaderboard-list {
    list-style: none;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.leaderboard-entry:hover {
    border-color: rgba(47, 240, 255, 0.5);
    background: rgba(47, 240, 255, 0.05);
}

.entry-rank {
    font-size: 1.3em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
    min-width: 40px;
    text-align: center;
}

.entry-rank.top-1 { color: #FFD700; }
.entry-rank.top-2 { color: #C0C0C0; }
.entry-rank.top-3 { color: #CD7F32; }

.entry-info {
    flex: 1;
    margin: 0 15px;
}

.entry-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.entry-details {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.5);
}

.entry-score {
    font-size: 1.5em;
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
}

/* ============================================
   PARTICLES SYSTEM
   ============================================ */

.particle {
    position: absolute;
    pointer-events: none;
    animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* ============================================
   EXPLANATION MODAL
   ============================================ */

.explanation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.explanation-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.explanation-modal {
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.95), rgba(5, 10, 18, 0.98));
    border: 2px solid rgba(47, 240, 255, 0.5);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(47, 240, 255, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.explanation-modal-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
}

.explanation-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(47, 240, 255, 0.3);
}

.explanation-modal-header.correct {
    border-bottom-color: rgba(81, 207, 102, 0.4);
}

.explanation-modal-header.incorrect {
    border-bottom-color: rgba(255, 107, 107, 0.4);
}

.explanation-modal-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.explanation-modal-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #ffffff;
}

.explanation-modal-header.correct .explanation-modal-title {
    color: #51CF66;
}

.explanation-modal-header.incorrect .explanation-modal-title {
    color: #FF6B6B;
}

.explanation-modal-body {
    flex: 1;
}

.explanation-modal-text {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */

.notification-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.98), rgba(5, 10, 18, 0.95));
    border: 2px solid rgba(47, 240, 255, 0.5);
    border-radius: 16px;
    padding: 30px 40px;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(47, 240, 255, 0.3);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-width: 300px;
    text-align: center;
}

.notification-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.notification-toast.success {
    border-color: rgba(81, 207, 102, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(81, 207, 102, 0.3);
}

.notification-toast.error {
    border-color: rgba(255, 107, 107, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 107, 107, 0.3);
}

.notification-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.notification-message {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.notification-toast.success .notification-message {
    color: #51CF66;
}

.notification-toast.error .notification-message {
    color: #FF6B6B;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

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

.hidden {
    display: none !important;
}

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(47, 240, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(47, 240, 255, 0.8);
}

/* ============================================
   TABLET LANDSCAPE OPTIMIZATIONS
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* Start Screen - Compact Layout */
    .trivia-start-screen {
        height: 100vh;
        justify-content: center;
        padding: 10px 0;
        gap: 8px;
    }
    
    .difficulty-selector {
        max-height: 50vh;
        overflow-y: auto;
        padding: 0 10px;
        margin: 10px 0;
    }
    
    .difficulty-selector h3 {
        font-size: 0.85em;
        margin-bottom: 8px;
    }
    
    .difficulty-options {
        gap: 8px;
    }
    
    .difficulty-option {
        padding: 10px;
        min-height: 70px;
    }
    
    .difficulty-description {
        font-size: 0.75em;
    }
    
    /* Results Screen - Compact Layout */
    .trivia-results-screen {
        padding: 15px 20px 60px 20px;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .results-header {
        margin-bottom: 20px;
    }
    
    .results-title {
        font-size: 1.8em;
        margin-bottom: 8px;
    }
    
    .results-subtitle {
        font-size: 0.9em;
    }
    
    .results-score-display {
        margin: 20px 0;
    }
    
    .final-score {
        font-size: 2.8em;
        margin-bottom: 6px;
    }
    
    .score-label {
        font-size: 0.95em;
    }
    
    .results-stats {
        gap: 12px;
        margin: 20px 0;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.5em;
    }
    
    .stat-label {
        font-size: 0.85em;
    }
    
    .name-entry-panel {
        margin: 20px 0;
        padding: 20px;
    }
    
    .name-entry-title {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .name-entry-panel .trivia-button {
        max-width: 300px;
    }
    
    /* Horizontal Button Layout for Tablet Landscape */
    .button-group-horizontal {
        flex-wrap: nowrap;
        gap: 12px;
        padding: 10px;
        margin-top: 10px;
    }
    
    .button-group-horizontal .trivia-button {
        flex: 1;
        max-width: 280px;
        min-width: auto;
        padding: 10px 15px;
        font-size: 0.85em;
    }
}

/* Tablet Portrait Mode - Keep stacked */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .trivia-start-screen {
        height: auto;
        overflow-y: auto;
    }
    
    .difficulty-selector {
        max-height: none;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .trivia-container {
        overflow-y: auto;
    }
    
    .trivia-hud {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hud-item {
        flex: 1 1 45%;
    }
    
    .question-text {
        font-size: 2.5em;
    }
    
    .answer-option {
        padding: 15px;
    }
    
    .answer-text {
        font-size: 1em;
    }
    
    .leaderboard-panel {
        width: 100%;
        right: -100%;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .rank-display {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .trivia-container {
        padding: 15px;
    }
    
    .trivia-start-screen {
        padding: 15px 0;
    }
    
    .question-card {
        padding: 18px;
    }
    
    .trivia-button {
        font-size: 0.95em;
        padding: 12px 25px;
    }
    
    .difficulty-options {
        gap: 8px;
    }
    
    .difficulty-option {
        padding: 12px;
    }
    
    .final-score {
        font-size: 3em;
    }
    
    .question-text {
        font-size: 2.7em;
    }
}

/* ============================================
   EXPLANATION MODAL
   ============================================ */

.explanation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.explanation-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.explanation-modal {
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.95), rgba(5, 10, 18, 0.98));
    border: 2px solid rgba(47, 240, 255, 0.5);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(47, 240, 255, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.explanation-modal-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
}

.explanation-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(47, 240, 255, 0.3);
}

.explanation-modal-header.correct {
    border-bottom-color: rgba(81, 207, 102, 0.4);
}

.explanation-modal-header.incorrect {
    border-bottom-color: rgba(255, 107, 107, 0.4);
}

.explanation-modal-icon {
    font-size: 1.8em;
    flex-shrink: 0;
}

.explanation-modal-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #ffffff;
}

.explanation-modal-header.correct .explanation-modal-title {
    color: #51CF66;
}

.explanation-modal-header.incorrect .explanation-modal-title {
    color: #FF6B6B;
}

.explanation-modal-body {
    flex: 1;
}

.explanation-modal-text {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.explanation-modal-close {
    background: linear-gradient(135deg, rgba(47, 240, 255, 0.2), rgba(47, 240, 255, 0.1));
    border: 2px solid rgba(47, 240, 255, 0.6);
    color: #ffffff;
    font-size: 1em;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(47, 240, 255, 0.2);
    align-self: center;
}

.explanation-modal-close:hover {
    border-color: rgba(47, 240, 255, 1);
    box-shadow: 0 6px 25px rgba(47, 240, 255, 0.4);
    transform: translateY(-2px);
}

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

/* Mobile */
@media (max-width: 768px) {
    .explanation-modal {
        max-width: 90vw;
        width: 100%;
    }
    
    .explanation-modal-content {
        padding: 25px;
        gap: 18px;
    }
    
    .explanation-modal-title {
        font-size: 1.2em;
    }
    
    .explanation-modal-text {
        font-size: 0.95em;
    }
    
    .explanation-modal-close {
        font-size: 0.95em;
        padding: 10px 25px;
    }
}
/* ============================================
   NOTIFICATION TOAST
   ============================================ */

.notification-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.98), rgba(5, 10, 18, 0.95));
    border: 2px solid rgba(47, 240, 255, 0.5);
    border-radius: 16px;
    padding: 30px 40px;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(47, 240, 255, 0.3);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-width: 300px;
    text-align: center;
}

.notification-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.notification-toast.success {
    border-color: rgba(81, 207, 102, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(81, 207, 102, 0.3);
}

.notification-toast.error {
    border-color: rgba(255, 107, 107, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 107, 107, 0.3);
}

.notification-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.notification-message {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.notification-toast.success .notification-message {
    color: #51CF66;
}

.notification-toast.error .notification-message {
    color: #FF6B6B;
}

@media (max-width: 768px) {
    .notification-toast {
        min-width: 280px;
        padding: 25px 30px;
    }
    
    .notification-icon {
        font-size: 2.5em;
    }
    
    .notification-message {
        font-size: 1.1em;
    }
}
/* ============================================
   TABLET LANDSCAPE OPTIMIZATIONS
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* Start Screen - Compact Layout */
    .trivia-start-screen {
        height: 100vh;
        justify-content: center;
        padding: 10px 0;
        gap: 8px;
    }
    
    .difficulty-selector {
        max-height: 50vh;
        overflow-y: auto;
        padding: 0 10px;
        margin: 10px 0;
    }
    
    .difficulty-selector h3 {
        font-size: 0.85em;
        margin-bottom: 8px;
    }
    
    .difficulty-options {
        gap: 8px;
    }
    
    .difficulty-option {
        padding: 10px;
        min-height: 70px;
    }
    
    .difficulty-description {
        font-size: 0.75em;
    }
    
    /* Horizontal Button Layout for Start Screen */
    .trivia-start-screen .button-group {
        flex-direction: row;
        gap: 10px;
        padding: 10px;
        flex-wrap: nowrap;
    }
    
    .trivia-start-screen .trivia-button {
        flex: 1;
        margin: 0;
        padding: 10px 15px;
        font-size: 0.85em;
        max-width: none;
        white-space: nowrap;
    }
    
    /* Results Screen - Compact Layout */
    .trivia-results-screen {
        padding: 15px 20px 60px 20px;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .results-header {
        margin-bottom: 20px;
    }
    
    .results-title {
        font-size: 1.8em;
        margin-bottom: 8px;
    }
    
    .results-subtitle {
        font-size: 0.9em;
    }
    
    .results-score-display {
        margin: 20px 0;
    }
    
    .final-score {
        font-size: 2.8em;
        margin-bottom: 6px;
    }
    
    .score-label {
        font-size: 0.95em;
    }
    
    .results-stats {
        gap: 12px;
        margin: 20px 0;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.5em;
    }
    
    .stat-label {
        font-size: 0.85em;
    }
    
    .name-entry-panel {
        margin: 20px 0;
        padding: 20px;
    }
    
    .name-entry-title {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    /* Horizontal Button Layout for Results Screen */
    .trivia-results-screen .trivia-button {
        display: inline-block;
        width: auto;
        min-width: 200px;
        margin: 5px 8px;
        padding: 10px 20px;
        font-size: 0.85em;
    }
    
    /* Name entry button stays full width */
    .name-entry-panel .trivia-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
    
    /* Bottom 3 buttons in a row */
    .trivia-results-screen > .trivia-button:nth-last-child(-n+3) {
        display: inline-block;
        width: calc(33.33% - 16px);
        min-width: auto;
        margin: 5px 8px;
    }
}

/* Tablet Portrait Mode - Keep stacked */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .trivia-start-screen {
        height: auto;
        overflow-y: auto;
    }
    
    .difficulty-selector {
        max-height: none;
    }
}
/* Horizontal button group for results */
.button-group-horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (min-width: 769px) and (orientation: landscape) {
    .button-group-horizontal {
        flex-wrap: nowrap;
    }
    
    .button-group-horizontal .trivia-button {
        flex: 1;
        max-width: 250px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .button-group-horizontal {
        flex-direction: column;
    }
    
    .button-group-horizontal .trivia-button {
        width: 100%;
        max-width: 400px;
    }
}
/* Compact HUD - reduce padding and spacing */
.trivia-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;  /* Reduced from 15px 20px */
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 12px;  /* Reduced from 15px */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hud-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;  /* Reduced from 5px */
}

.hud-label {
    font-size: 0.7em;  /* Reduced from 0.8em */
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hud-value {
    font-size: 1.2em;  /* Reduced from 1.4em */
    font-weight: 700;
    color: rgba(47, 240, 255, 1);
    text-shadow: 0 0 10px rgba(47, 240, 255, 0.5);
}

/* Compact progress bar */
.progress-container {
    margin-bottom: 12px;  /* Reduced from 15px */
}

.progress-bar {
    width: 100%;
    height: 6px;  /* Reduced from 8px */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Larger question text */
#artemis-trivia-root .question-text,
.trivia-game-screen .question-text,
p.question-text {
    font-size: 2.8em;  /* Increased from 2.4em */
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7),
                 0 0 30px rgba(47, 240, 255, 0.5),
                 0 0 50px rgba(47, 240, 255, 0.3);
    letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .question-text {
        font-size: 2.1em !important;  /* Increased from 1.9em */
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    .question-text {
        font-size: 1.9em !important;  /* Increased from 1.7em */
        color: #ffffff !important;
    }
}
/* Center the stats boxes */
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px auto;  /* Add auto for centering */
    max-width: 800px;  /* Limit width for better centering */
    justify-items: center;  /* Center items within grid */
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(47, 240, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    width: 100%;  /* Full width of grid cell */
    max-width: 200px;  /* But not too wide */
}

/* Move scrollbar to screen edge - remove padding from results screen */
.trivia-results-screen {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
    padding: 20px 0 120px 0;  /* Remove left/right padding */
    overflow-y: auto;
    max-height: 95vh;
    margin: 0 auto;  /* Center the content */
}

/* Add padding back to inner content */
.results-header,
.results-score-display,
.results-stats,
.name-entry-panel,
.rank-display {
    padding-left: 20px;
    padding-right: 20px;
}

/* Ensure scrollbar goes to edge on tablet landscape too */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .trivia-results-screen {
        padding: 15px 0 60px 0;
    }
}
/* Tablet Landscape - Fix button positioning */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    
    .trivia-results-screen {
        padding: 15px 0 30px 0;  /* Reduced bottom padding from 60px */
        max-height: 100vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .results-header {
        margin-bottom: 15px;  /* Reduced from 20px */
    }
    
    .results-title {
        font-size: 1.8em;
        margin-bottom: 6px;  /* Reduced from 8px */
    }
    
    .results-subtitle {
        font-size: 0.9em;
    }
    
    .results-score-display {
        margin: 15px 0;  /* Reduced from 20px */
    }
    
    .final-score {
        font-size: 2.8em;
        margin-bottom: 4px;  /* Reduced from 6px */
    }
    
    .score-label {
        font-size: 0.95em;
    }
    
    .results-stats {
        gap: 10px;  /* Reduced from 12px */
        margin: 15px auto;  /* Reduced from 20px */
    }
    
    .stat-box {
        padding: 12px;  /* Reduced from 15px */
    }
    
    .stat-value {
        font-size: 1.4em;  /* Reduced from 1.5em */
    }
    
    .stat-label {
        font-size: 0.85em;
    }
    
    .name-entry-panel {
        margin: 15px 0;  /* Reduced from 20px */
        padding: 15px;  /* Reduced from 20px */
    }
    
    .name-entry-title {
        font-size: 1.1em;
        margin-bottom: 10px;  /* Reduced from 12px */
    }
    
    /* Horizontal Button Layout for Tablet Landscape */
    .button-group-horizontal {
        flex-wrap: nowrap;
        gap: 12px;
        padding: 5px 10px;  /* Reduced padding */
        margin-top: 5px;  /* Reduced from 10px */
    }
    
    .button-group-horizontal .trivia-button {
        flex: 1;
        max-width: 280px;
        min-width: auto;
        padding: 10px 15px;
        font-size: 0.85em;
    }
}
.difficulty-selector {
    margin: 0;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 10px;  /* Add small bottom margin to reduce gap */
}

/* Reduce gap before buttons */
.button-group-horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 10px;  /* Changed from 20px - halved the distance */
    flex-wrap: wrap;
    flex-shrink: 0;
    padding: 10px;
}
.trivia-start-screen {
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    height: 100vh;
    justify-content: flex-start; /* CHANGED from space-between */
}

/* Difficulty selector - remove flex: 1 so it doesn't expand */
.difficulty-selector {
    margin: 0;
    width: 100%;
    flex: 0 1 auto; /* CHANGED from flex: 1 - won't expand to fill space */
    overflow-y: auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 70vh; /* Limit height so it doesn't push buttons down */
}

/* Button group - position it right after difficulty selector */
.button-group-horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 0; /* No extra margin */
    flex-wrap: wrap;
    flex-shrink: 0;
    padding: 30px;
}
/* Button group - center the group of buttons */
.button-group-horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-shrink: 0;
    padding: 10px;
}

.button-group-horizontal .trivia-button {
    margin: 0;
    padding: 11px 20px;
    font-size: 0.9em;
    flex: 0 0 auto; /* CHANGED - don't grow or shrink, natural size */
    max-width: none; /* CHANGED - remove max-width */
    min-width: 150px;
}
/* Move scrollbar to screen edge */
#artemis-trivia-root {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* Ensure body/html have no padding affecting scrollbar */
body.page-template-template-artemis-trivia,
body.page-template-template-artemis-trivia #content,
body.page-template-template-artemis-trivia .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}
/* Hide scrollbar but keep scrolling functionality */
body.page-template-template-artemis-trivia {
    overflow: hidden !important;
}

#artemis-trivia-root {
    overflow-y: auto !important;
    max-height: 100vh !important;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Chrome, Safari, Opera */
#artemis-trivia-root::-webkit-scrollbar {
    display: none;
}

.trivia-results-screen {
    overflow-y: auto !important;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Chrome, Safari, Opera */
.trivia-results-screen::-webkit-scrollbar {
    display: none;
}