        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
        }
        
        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        .container { 
            margin-top: 20px;
            max-width: 1400px;
        }
        
        .navbar {
            background-color: var(--primary-color);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        
        .navbar-brand {
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }

        /* Header padronizado (mesmo estilo do overall.html) */
        .header-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }

        .header-icon {
            font-size: 1.8rem;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }

        .page-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
            color: white;
        }

        .match-name {
            font-size: 1rem;
            font-weight: 400;
            margin: 0;
            color: rgba(255, 255, 255, 0.85);
        }

        .header-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.75rem;
        }

        .header-actions .btn-group {
            display: flex;
            flex-direction: row;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .header-actions .btn-group .btn {
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
        }

        .header-actions .btn-group .btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }
        
        .card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        
        .card-header {
            background-color: var(--primary-color);
            color: white;
            border-radius: 8px 8px 0 0 !important;
        }
        
        .selector-title {
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .match-card {
            cursor: pointer;
            transition: transform 0.2s;
            margin-bottom: 15px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            border: 2px solid transparent;
            text-decoration: none;
            color: inherit;
        }
        
        .match-card:hover {
            transform: translateY(-2px);
            text-decoration: none;
            color: inherit;
        }
        
        .match-card .card-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .match-card .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .match-card .card-text {
            font-size: 0.9rem;
            color: #6c757d;
            flex: 1;
        }
        
        .match-card .badge {
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .input-group-text {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        /* Banner de Anúncio */
        .banner-container {
            width: 100%;
            margin: 0 auto 20px;
            text-align: center;
        }

        .banner-content {
            max-width: 1170px;
            margin: 0 auto;
        }

        /* Ajustes responsivos para mobile */
        @media (max-width: 768px) {
            .container {
                margin-top: 10px;
                padding: 0 8px;
                max-width: 100%;
                overflow-x: hidden;
            }
            
            .banner-container,
            .banner-content,
            #advertisement-container {
                max-width: 100%;
                overflow-x: hidden;
            }
            
            [data-ad-inline] {
                max-width: 100% !important;
                width: 100% !important;
            }
            
            .page-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .selector-title {
                font-size: 1.05rem;
            }

            .match-card .card-title {
                font-size: 1rem;
            }

            .match-card .card-text,
            .match-card small,
            .text-muted {
                font-size: 0.8rem;
            }

            .badge {
                font-size: 0.7rem;
            }

            .card-body {
                padding: 0.75rem;
            }

            /* Padronização de fontes no bloco "Sobre o Editor" */
            #editorInfoHeading {
                font-size: 1rem;
            }
            #editorInfoHeading + .card-body p,
            #editorInfoHeading + .card-body li,
            #editorInfoHeading + .card-body .btn {
                font-size: 0.8rem;
            }
            #editorInfoHeading + .card-body th,
            #editorInfoHeading + .card-body td {
                font-size: 0.78rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                margin-top: 5px;
                padding: 0 6px;
            }

            .page-title {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .selector-title {
                font-size: 0.95rem;
            }

            .match-card .card-title {
                font-size: 0.95rem;
            }

            .match-card .card-text,
            .match-card small,
            .text-muted {
                font-size: 0.75rem;
            }

            .badge {
                font-size: 0.65rem;
            }

            .card {
                margin-bottom: 0.75rem;
            }

            .card-body {
                padding: 0.6rem;
            }

            /* Padronização de fontes no bloco "Sobre o Editor" */
            #editorInfoHeading {
                font-size: 0.9rem;
            }
            #editorInfoHeading + .card-body p,
            #editorInfoHeading + .card-body li,
            #editorInfoHeading + .card-body .btn {
                font-size: 0.75rem;
            }
            #editorInfoHeading + .card-body th,
            #editorInfoHeading + .card-body td {
                font-size: 0.72rem;
            }

            #resultsInfo,
            #paginationInfo {
                font-size: 0.75rem;
            }
        }

        /* Estilos para Navegação Rápida - botões compactos */
        .quick-nav-btn {
            transition: all 0.2s ease;
            border-width: 1px;
            padding: 0.4rem 0.6rem !important;
            font-size: 0.85rem;
            min-height: auto !important;
        }
        
        .quick-nav-btn i {
            font-size: 1.1rem !important;
            margin-right: 0.35rem;
            margin-bottom: 0 !important;
        }
        
        .quick-nav-btn span {
            font-size: 0.85rem;
        }
        
        .quick-nav-btn small {
            display: none;
        }
        
        .quick-nav-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .quick-nav-toggle {
            cursor: pointer;
            user-select: none;
        }
        
        .quick-nav-toggle .fa-chevron-down {
            transition: transform 0.3s ease;
        }
        
        .quick-nav-toggle.collapsed .fa-chevron-down {
            transform: rotate(180deg);
        }
