/**
 * Woutick Waiting Room - CSS Principal
 * =====================================
 * Réplica exacta del diseño de Tailwind original
 */

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #F9FAFB;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ===========================================
   HEADER - Exactamente como el diseño
   =========================================== */
header {
    background: #F9FAFB;
    display: flex;
    height: 80px;
    min-height: 80px;
    padding: 0 32px;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(7.5px);
}

@media (max-width: 768px) {
    header {
        padding: 16px;
        height: auto;
        min-height: auto;
    }
}

/* ===========================================
   MAIN - flex-grow para ocupar espacio
   =========================================== */
main {
    flex-grow: 1;
    height: 100%;
    padding: 16px;
}

@media (min-width: 768px) {
    main {
        padding: 0;
    }
}

/* ===========================================
   CONTENT SECTION - Grid 2 columnas
   =========================================== */
.content-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    height: 100%;
    width: 100%;
    max-width: 1136px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .content-section {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Text Container */
.text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (min-width: 768px) {
    .text-container {
        padding: 0 16px;
    }
}

@media (min-width: 1024px) {
    .text-container {
        padding: 0;
    }
}

/* ===========================================
   TYPOGRAPHY - Exactamente como el diseño
   =========================================== */

/* Headline XS - Título principal */
.text-headline-xs {
    color: #CC3366;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 12px;
}

/* Override para títulos en negro */
.text-headline-xs.title-dark {
    color: #141C24 !important;
}

@media (min-width: 768px) {
    .text-headline-xs {
        font-size: 32px !important;
        line-height: 1.2;
    }
}

/* Main S - Subtítulo */
.text-main-s {
    color: #637083;
    font-feature-settings: 'ss02' on;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

@media (min-width: 768px) {
    .text-main-s {
        font-size: 16px !important;
    }
}

/* Main M - Texto informativo */
.text-main-m {
    color: #637083;
    font-feature-settings: 'ss02' on;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    text-align: center;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .text-main-m {
        font-size: 14px !important;
    }
}

.text-main-m strong {
    font-weight: 600;
    color: #141C24;
}

/* Subtitle L - Posición y tiempo */
.text-subtitle-l {
    color: #CC3366;
    text-align: center;
    font-feature-settings: 'ss02' on;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}

@media (min-width: 768px) {
    .text-subtitle-l {
        font-size: 20px !important;
    }
}

/* Override para tiempo en negro */
.text-subtitle-l.time-dark {
    color: #141C24 !important;
    padding: 8px 0;
}

/* ===========================================
   QUEUE INFO BOX
   =========================================== */
.queue-info {
    margin: 32px 0;
    width: 100%;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background: #E4E4E7;
    border-radius: 9999px;
    height: 16px;
    overflow: hidden;
}

.progress-fill {
    background: #CC3366;
    height: 16px;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

/* ===========================================
   FOOTER - Exactamente como el diseño
   =========================================== */
footer {
    background: #141C24;
    display: flex;
    padding: 40px 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}

footer .text-main-s {
    color: #637083;
}

/* ===========================================
   GAMES BUTTON
   =========================================== */
.tab-visibility-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 8px;
    padding: 12px 16px;
    background: rgba(204, 51, 102, 0.08);
    border-left: 3px solid #CC3366;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #637083;
    line-height: 1.5;
}

.tab-visibility-tip .tip-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.tab-visibility-tip .tip-text {
    flex: 1;
}

/* Mobile warning - más prominente */
.mobile-warning {
    display: none; /* Se muestra via JS si es móvil */
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 8px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(220, 38, 38, 0.08));
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-left: 4px solid #EA580C;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #9A3412;
    line-height: 1.5;
}

.mobile-warning .warning-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.mobile-warning .warning-text {
    flex: 1;
}

.mobile-warning strong {
    color: #C2410C;
}

.games-section {
    margin-top: 24px;
    text-align: center;
}

.games-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #CC3366, #E85A8C);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(204, 51, 102, 0.3);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.games-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 51, 102, 0.4);
}

.games-trigger:active {
    transform: translateY(0);
}

/* ===========================================
   GAME MODAL - REDISEÑADO
   =========================================== */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d0d1a;
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
}

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

/* Game Header */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-icon {
    font-size: 28px;
}

.game-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.game-score-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-left: 16px;
}

.game-score-value {
    color: #CC3366;
    font-weight: 700;
    font-size: 18px;
}

.game-controls {
    display: flex;
    gap: 8px;
}

.game-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-btn:hover {
    background: rgba(255,255,255,0.2);
}

.game-btn.sound-on {
    background: rgba(204, 51, 102, 0.4);
    color: #E85A8C;
}

/* Game Main Area */
.game-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.game-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* PC: Horizontal layout */
@media (min-width: 769px) {
    .game-main {
        flex-direction: row;
    }
    
    .game-content-area {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }
    
    .game-canvas-wrapper {
        flex: 1;
        min-width: 0;
    }
}

/* Game Sidebar - Lista de juegos (PC) */
.game-sidebar {
    display: none;
    width: 200px;
    background: rgba(0,0,0,0.3);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    overflow-y: auto;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .game-sidebar {
        display: block;
    }
}

.game-sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.game-list-item:hover {
    background: rgba(255,255,255,0.1);
}

.game-list-item.selected {
    background: rgba(204, 51, 102, 0.3);
    border-color: #CC3366;
}

.game-list-icon {
    font-size: 22px;
}

.game-list-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

/* Mobile: Dropdown selector */
.game-dropdown-container {
    display: flex;
    padding: 8px 16px;
    background: rgba(0,0,0,0.3);
    align-items: center;
    gap: 12px;
}

@media (min-width: 769px) {
    .game-dropdown-container {
        display: none;
    }
}

.game-dropdown {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.game-dropdown option {
    background: #1a1a2e;
    color: white;
    padding: 12px;
}

/* Game Canvas Area */
.game-canvas-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    overflow: hidden;
    position: relative;
}

#game-canvas {
    background: #12121f;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(204, 51, 102, 0.3);
    max-width: 100%;
    max-height: 100%;
    touch-action: none;
}

/* Mobile Controls - Fixed at bottom */
.mobile-controls-container {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .mobile-controls-container {
        display: none;
    }
}

#mobile-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.controls-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-btn {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 24px;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
    font-family: 'Poppins', sans-serif;
}

.mobile-btn:active {
    background: #CC3366;
    transform: scale(0.95);
}

.mobile-btn.wide {
    width: 130px;
    font-size: 14px;
    font-weight: 500;
}

.mobile-btn.action {
    background: rgba(204, 51, 102, 0.4);
}

/* ===========================================
   NOTIFICATIONS / OVERLAYS
   =========================================== */
.your-turn-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 28, 36, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.your-turn-overlay.active {
    display: flex;
}

.your-turn-content {
    text-align: center;
    padding: 40px;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.your-turn-emoji {
    font-size: 80px;
    display: block;
    margin-bottom: 24px;
    animation: bounce 1s ease infinite;
}

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

.your-turn-text {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.your-turn-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.your-turn-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #CC3366, #E85A8C);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(204, 51, 102, 0.4);
}

.your-turn-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(204, 51, 102, 0.5);
}

.your-turn-redirect {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-align: center;
}

/* ===========================================
   HIGH DEMAND PAGE
   =========================================== */
.high-demand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100%;
}

.high-demand-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.high-demand-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #141C24;
    margin-bottom: 12px;
}

.high-demand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #637083;
}

/* ===========================================
   QUEUE BADGE - Indicador flotante de posición
   =========================================== */
.queue-badge {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #CC3366, #E85A8C);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 15;
    box-shadow: 0 6px 24px rgba(204, 51, 102, 0.5);
    animation: badge-pulse 2.5s ease-in-out infinite;
    min-width: 80px;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 24px rgba(204, 51, 102, 0.5); }
    50% { transform: scale(1.03); box-shadow: 0 8px 32px rgba(204, 51, 102, 0.6); }
}

.queue-badge-label {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.queue-badge-number {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.game-info-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px;
    margin: 16px 20px 0;
    background: rgba(204, 51, 102, 0.06);
    border-left: 3px solid #CC3366;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #637083;
    line-height: 1.5;
}

.game-info-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.game-info-text {
    flex: 1;
}

@media (max-width: 768px) {
    .queue-badge {
        top: auto;
        bottom: 200px;
        right: 12px;
        transform: none;
        padding: 10px 16px;
    }
    .queue-badge-number { font-size: 22px; }
    
    .game-info-message {
        margin: 12px 12px 0;
        padding: 12px 16px;
        font-size: 11px;
    }
}

/* ===========================================
   SAVE SCORE MODAL
   =========================================== */
.save-score-modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.save-score-modal.active {
    display: flex;
}

.save-score-content {
    background: white;
    border-radius: 20px;
    padding: 28px;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: modal-pop 0.3s ease;
}

@keyframes modal-pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.save-score-header {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #CC3366;
    margin-bottom: 4px;
}

.save-score-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 16px;
}

.save-score-game {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
}

.save-score-points {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #CC3366;
    margin-bottom: 20px;
    line-height: 1;
}

.save-score-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    box-sizing: border-box;
    transition: all 0.2s;
}

.save-score-input:focus {
    outline: none;
    border-color: #CC3366;
    background: white;
}

.save-score-input::placeholder {
    color: #bbb;
}

.save-score-buttons {
    display: flex;
    gap: 12px;
}

.save-score-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.save-score-btn.save {
    background: linear-gradient(135deg, #CC3366, #E85A8C);
    color: white;
}

.save-score-btn.save:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 51, 102, 0.4);
}

.save-score-btn.cancel {
    background: #f0f0f0;
    color: #666;
}

.save-score-btn.cancel:hover {
    background: #e5e5e5;
}

.save-score-message {
    margin-top: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    min-height: 20px;
}

.save-score-message.success {
    color: #10B981;
}

.save-score-message.error {
    color: #EF4444;
}

/* ===========================================
   TOP 10 MODAL
   =========================================== */
.top10-modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

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

.top10-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 340px;
    max-height: 80%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: modal-pop 0.3s ease;
}

.top10-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #CC3366, #E85A8C);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.top10-close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top10-close:hover {
    background: rgba(255,255,255,0.3);
}

.top10-game {
    padding: 12px 20px;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.top10-list {
    padding: 16px;
    max-height: 350px;
    overflow-y: auto;
}

.top10-loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-family: 'Poppins', sans-serif;
}

.top10-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.top10-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 8px;
}

.top10-item.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.top10-item.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: white;
}

.top10-item.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
    color: white;
}

.top10-rank {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    min-width: 35px;
    text-align: center;
}

.top10-item.gold .top10-rank,
.top10-item.silver .top10-rank,
.top10-item.bronze .top10-rank {
    color: white;
}

.top10-name {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top10-item.gold .top10-name,
.top10-item.silver .top10-name,
.top10-item.bronze .top10-name {
    color: white;
    font-weight: 600;
}

.top10-score {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #CC3366;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
}

.top10-item.gold .top10-score,
.top10-item.silver .top10-score,
.top10-item.bronze .top10-score {
    color: #333;
}

