    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #e5e5e5;
            color: #1a1a1a;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        header h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: #1a1a1a;
            position: relative;
            z-index: 1;
        }
        
        header p {
            font-size: 1rem;
            color: #2d2d2d;
            position: relative;
            z-index: 1;
        }

        .search-container {
            margin: 2rem auto;
            display: flex;
            justify-content: center;
            max-width: 500px;
            width: 100%;
        }

        .search-box {
            width: 100%;
            max-width: 500px;
            padding: 1rem 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            background: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .search-box:focus {
            outline: none;
            border-color: #ffd700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
        }

        .search-box::placeholder {
            color: #9ca3af;
        }

        .sort-container {
            margin: 1rem auto 2rem auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            max-width: 500px;
            width: 100%;
            padding: 0 1rem;
        }

        .sort-btn {
            padding: 0.75rem 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            background: #ffffff;
            color: #374151;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-width: 120px;
            white-space: nowrap;
            flex: 1;
            max-width: 150px;
        }

        .sort-btn:hover {
            border-color: #ffd700;
            background: #fffbeb;
            transform: translateY(-1px);
        }

        .sort-btn.active {
            background: #ffd700;
            border-color: #ffd700;
            color: #1a1a1a;
        }

        .sort-btn.active:hover {
            background: #ffed4e;
        }

        .sort-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .sort-btn:disabled:hover {
            border-color: #e5e7eb;
            background: #ffffff;
            transform: none;
        }

        .language-selector {
            margin-top: 2rem;
            padding: 1.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border-top: 1px solid #e5e7eb;
        }

        .language-selector label {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
        }

        .language-selector select {
            padding: 0.4rem 0.8rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            background: white;
            font-size: 0.9rem;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .language-selector select:hover {
            border-color: #d1d5db;
        }

        .language-selector select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .routes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .route {
            background: #fffef7;
            border: 2px solid #ffd700;
            border-radius: 16px;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .route-map-background {
            height: 120px;
            width: 100%;
            background: #f0f0f0;
            border-radius: 16px 16px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .route-map-background .leaflet-container {
            height: 100%;
            width: 100%;
            border-radius: 16px 16px 0 0;
        }

        .route-map-disabled {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 0.78rem;
            padding: 0.5rem;
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
            text-align: center;
        }
        
        .route::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .route:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-color: #d1d5db;
        }
        
        .route:hover::before {
            transform: scaleX(1);
        }
        
        .route h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #111827;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.3;
            height: calc(1.3em * 2);
        }
        
        .route p {
            color: #6b7280;
            font-size: 0.8rem;
            margin-bottom: 0.4rem;
        }
        
        .route-content {
            flex: 1;
            padding: 1.5rem;
        }
        
        
        .mini-start-marker {
            background: none !important;
            border: none !important;
            font-size: 16px;
            text-align: center;
            line-height: 1;
        }
        
        .terrain-stats {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
            padding: 0.75rem;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        
        .terrain-item {
            flex: 1;
            text-align: center;
            padding: 0.4rem;
            border-radius: 6px;
            font-size: 0.75rem;
        }
        
        .terrain-item.climbing {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.3) 100%);
            border: 1px solid rgba(239, 68, 68, 0.2);
            transition: all 0.3s ease;
        }
        
        .terrain-item.flat {
            background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.3) 100%);
            border: 1px solid rgba(234, 179, 8, 0.2);
            transition: all 0.3s ease;
        }
        
        .terrain-item.descending {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.3) 100%);
            border: 1px solid rgba(34, 197, 94, 0.2);
            transition: all 0.3s ease;
        }
        
        .terrain-label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.25rem;
        }
        
        .terrain-percentage {
            display: block;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .terrain-details {
            display: block;
            font-size: 0.65rem;
            font-weight: 500;
            margin-top: 0.2rem;
            opacity: 0.8;
        }
        
        .terrain-item.climbing .terrain-percentage {
            color: #dc2626;
        }
        
        .terrain-item.flat .terrain-percentage {
            color: #d97706;
        }
        
        .terrain-item.descending .terrain-percentage {
            color: #16a34a;
        }
        
        .route-actions {
            margin-top: auto;
            display: flex;
            gap: 0.75rem;
            padding-top: 1.5rem;
        }
        
        button {
            background: #ffd700;
            color: #1a1a1a;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            flex: 1;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        button:hover {
            background: #ffed4e;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }
        
        button.secondary {
            background: #1a1a1a;
            color: #ffd700;
            border: 1px solid #333333;
        }
        
        button.secondary:hover {
            background: #2d2d2d;
            color: #ffed4e;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        #viewer,
        #cafeMapViewer {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            display: none;
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            transition: background-color 0.3s ease-in-out;
            opacity: 0;
            visibility: hidden;
        }
        
        #viewer.show,
        #cafeMapViewer.show {
            background: rgba(0, 0, 0, 0.5);
            opacity: 1;
            visibility: visible;
        }

        .cafe-map-fab {
            position: fixed;
            bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
            left: 50%;
            transform: translateX(-50%);
            z-index: 900;
            flex: none;
            padding: 0.65rem 1.25rem;
            border-radius: 999px;
            border: none;
            background: #111827;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .cafe-map-fab:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
            background: #000;
        }

        .cafe-explorer-hint {
            margin: 0;
            font-size: 0.88rem;
            color: #6b7280;
            max-width: 42rem;
        }

        .cafe-nearby-routes {
            margin-top: 0.5rem;
            text-align: left;
            max-height: 220px;
            overflow-y: auto;
            font-size: 0.85rem;
        }

        .cafe-nearby-routes button {
            display: block;
            width: 100%;
            margin-top: 0.35rem;
            padding: 0.4rem 0.5rem;
            font-size: 0.82rem;
            text-align: left;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            color: #111827;
        }

        .cafe-nearby-routes button:hover {
            background: #fff7d6;
            border-color: #fcd34d;
        }
        
        .viewer-content {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.5rem;
            max-width: 1400px;
            width: 95%;
            height: 95vh;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            position: relative;
            display: flex;
            flex-direction: column;
            transform: scale(0.8) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        #viewer.show .viewer-content,
        #cafeMapViewer.show .viewer-content {
            transform: scale(1) translateY(0);
        }
        
        
        .directional-arrow {
            background: transparent !important;
            border: none !important;
        }
        
        .cafe-marker {
            background: transparent !important;
            border: none !important;
        }
        
        .viewer-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e5e7eb;
            flex-shrink: 0;
            gap: 0.35rem;
        }
        
        .viewer-header h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #111827;
            width: 100%;
        }

        .cafe-map-notice {
            margin: 0.25rem 0 0 0;
            font-size: 0.88rem;
            color: #92400e;
            width: 100%;
        }

        .cafe-filter-toggle {
            font-size: 0.82rem;
            color: #374151;
            width: 100%;
            cursor: pointer;
            user-select: none;
        }

        .cafe-filter-toggle input {
            margin-right: 0.35rem;
        }

        .dataset-meta {
            text-align: center;
            font-size: 0.85rem;
            color: #6b7280;
            margin: 1rem 0 0 0;
        }

        .viewer-topbar {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 0.5rem;
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1001;
        }

        .viewer-topbar .close-btn {
            position: static;
        }

        .toolbar-copy-btn {
            background: #1d4ed8;
            color: #ffffff;
            border: none;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.15s ease;
            white-space: nowrap;
        }

        .toolbar-copy-btn:hover {
            background: #1e40af;
            transform: translateY(-1px);
        }

        .close-btn {
            background: #ef4444;
            color: #ffffff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 1001;
        }
        
        .close-btn:hover {
            background: #dc2626;
            transform: scale(1.05);
        }
        
        .map-container {
            flex: 1;
            margin: 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            min-height: 0;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.5rem;
            margin: 1rem 0 0 0;
            flex-shrink: 0;
        }
        
        .stat {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 0.8rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .stat-label {
            font-size: 0.7rem;
            color: #6b7280;
            margin-bottom: 0.4rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .stat-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #111827;
        }
        
        .stat-detail {
            font-size: 0.7rem;
            color: #6b7280;
            margin-top: 0.2rem;
            font-weight: 500;
        }
        
        .loading {
            text-align: center;
            padding: 4rem;
            color: #6b7280;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            min-height: 120px;
        }
        
        .cycling-animation {
            display: block;
            font-size: 3.5rem;
            animation: pedaling 0.8s ease-in-out infinite;
            margin-bottom: 1rem;
            position: relative;
            left: 40px;
            transition: left 0.3s ease-out;
        }
        
        @keyframes pedaling {
            0% { transform: rotate(0deg) translateY(0px); }
            25% { transform: rotate(-5deg) translateY(-2px); }
            50% { transform: rotate(0deg) translateY(0px); }
            75% { transform: rotate(5deg) translateY(-2px); }
            100% { transform: rotate(0deg) translateY(0px); }
        }
        
        .loading-text {
            display: inline-block;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        
        .error-message {
            background: #fef2f2;
            color: #dc2626;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 2rem 0;
            border: 1px solid #fecaca;
        }
        
        .no-routes {
            text-align: center;
            padding: 3rem;
            color: #6b7280;
            font-size: 1.1rem;
            background: #f9fafb;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid #e5e7eb;
        }
        
        #elevationProfile {
            margin-top: 2rem;
            padding: 1.5rem;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        #elevationProfile h3 {
            color: #111827;
            margin-bottom: 0.8rem;
            font-size: 1rem;
            font-weight: 600;
        }
        
        #elevationChart {
            width: 100%;
            max-width: 800px;
            height: 200px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #f9fafb;
        }
        
        .mini-elevation-profile {
            margin: 1rem 0;
            padding: 0.75rem;
            background: #f9fafb;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            header {
                padding: 2rem 1rem;
            }
            
            header h1 {
                font-size: 1.8rem;
            }
            
            .search-container {
                margin: 1rem auto;
                padding: 0 0.5rem;
            }
            
            .sort-container {
                margin: 1rem auto 1.5rem auto;
                padding: 0 0.5rem;
                gap: 0.3rem;
            }
            
            .sort-btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                min-width: 100px;
                max-width: 120px;
                flex: 1;
            }
            
            .routes-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .route {
                margin-bottom: 0;
            }
            
            .route-map-background {
                height: 100px;
            }
            
            .route-content {
                padding: 1rem;
            }
            
            .route h3 {
                font-size: 1rem;
                line-height: 1.2;
                height: calc(1.2em * 2);
            }
            
            .terrain-stats {
                flex-direction: row;
                gap: 0.3rem;
                padding: 0.5rem;
            }
            
            .terrain-item {
                padding: 0.4rem;
                text-align: center;
                font-size: 0.7rem;
            }
            
            .terrain-label {
                font-size: 0.65rem;
            }
            
            .terrain-percentage {
                font-size: 0.8rem;
                font-weight: 700;
            }
            
            .terrain-details {
                font-size: 0.6rem;
            }
            
            .mini-elevation-profile {
                margin: 0.75rem 0;
                padding: 0.5rem;
                height: 100px;
                background: #f8f9fa;
                border-radius: 8px;
                border: 1px solid #e5e7eb;
            }
            
            .mini-elevation-profile canvas {
                height: 80px !important;
                width: 100% !important;
                border-radius: 4px;
            }
            
            .difficulty-score-bar {
                margin-bottom: 0.5rem;
                padding: 0.4rem;
            }
            
            .score-bar-labels {
                font-size: 0.7rem;
            }
            
            .score-value {
                font-size: 0.8rem;
            }
            
            .route-actions {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .route-actions button {
                width: 100%;
                padding: 0.75rem;
            }
            
            .map-container {
                height: 300px;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #viewer {
                padding: 0.5rem;
            }
            
            .viewer-content {
                height: 98vh;
                padding: 1rem;
                width: 98%;
            }

            .viewer-topbar {
                top: 0.5rem;
                right: 0.5rem;
                gap: 0.35rem;
            }
            
            .close-btn {
                top: 0.5rem;
                right: 0.5rem;
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .viewer-topbar .close-btn {
                top: auto;
                right: auto;
            }

            .toolbar-copy-btn {
                font-size: 0.78rem;
                padding: 0.35rem 0.55rem;
            }
            
            .stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.3rem;
                margin: 0.5rem 0 0 0;
                padding: 0.5rem;
            }
            
            .stat {
                padding: 0.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0.5rem;
            }
            
            header {
                padding: 1.5rem 0.5rem;
                margin-bottom: 1rem;
            }
            
            header h1 {
                font-size: 1.5rem;
            }
            
            .search-container {
                margin: 0.5rem auto;
                padding: 0 0.25rem;
            }
            
            .sort-container {
                margin: 0.5rem auto 1rem auto;
                padding: 0 0.25rem;
                gap: 0.25rem;
            }
            
            .sort-btn {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
                min-width: 80px;
                max-width: 100px;
            }
            
            .route-map-background {
                height: 80px;
            }
            
            .route-content {
                padding: 0.75rem;
            }
            
            .route h3 {
                font-size: 0.9rem;
            }
            
            .terrain-stats {
                flex-direction: row;
                gap: 0.2rem;
                padding: 0.4rem;
            }
            
            .terrain-item {
                padding: 0.3rem;
                font-size: 0.65rem;
                text-align: center;
            }
            
            .terrain-label {
                font-size: 0.6rem;
            }
            
            .terrain-percentage {
                font-size: 0.75rem;
                font-weight: 700;
            }
            
            .terrain-details {
                font-size: 0.55rem;
            }
            
            .mini-elevation-profile {
                height: 80px;
                padding: 0.4rem;
                background: #f8f9fa;
                border-radius: 8px;
                border: 1px solid #e5e7eb;
            }
            
            .mini-elevation-profile canvas {
                height: 60px !important;
                width: 100% !important;
                border-radius: 4px;
            }
            
            .difficulty-score-bar {
                margin-bottom: 0.4rem;
                padding: 0.3rem;
            }
            
            .score-bar-labels {
                font-size: 0.65rem;
            }
            
            .score-value {
                font-size: 0.75rem;
            }
            
            .route-actions button {
                padding: 0.6rem;
                font-size: 0.8rem;
            }
        }

        .difficulty-score-bar {
            margin-bottom: 1rem;
            padding: 0.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .score-bar-container {
            position: relative;
            width: 100%;
            height: 12px;
            background: #e5e7eb;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .score-bar-fill {
            height: 100%;
            border-radius: 6px;
            transition: width 0.8s ease-in-out;
            position: relative;
        }

        .score-bar-easy {
            background: linear-gradient(90deg, #10b981, #34d399);
        }

        .score-bar-medium {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
        }

        .score-bar-hard {
            background: linear-gradient(90deg, #ef4444, #f87171);
        }

        .score-bar-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 500;
        }

        .score-value {
            font-size: 0.8rem;
            font-weight: 700;
            color: #374151;
            text-align: center;
            margin-top: 0.3rem;
        }

        .score-difficulty {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
            margin-top: 0.2rem;
        }

        .score-easy {
            color: #10b981;
        }

        .score-medium {
            color: #f59e0b;
        }

        .score-hard {
            color: #ef4444;
        }
