/**
 * Estilos — shooter-verify.css (restaurado do template original)
 */
.chart {
            margin-bottom: 20px;
        }
        
        .charts-section {
            background: var(--match-card);
            border-radius: 8px;
            box-shadow: var(--match-shadow-sm);
            padding: 20px;
            margin: 20px 0;
            border: 1px solid var(--match-border);
        }
        
        .chart-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            background: var(--match-bg);
            border-radius: 8px;
            box-shadow: none;
            border: 1px solid var(--match-border);
            padding: 20px;
            margin-bottom: 20px;
            box-sizing: border-box;
            min-height: 400px;
        }
        
        .chart-container canvas {
            width: 100% !important;
            height: 100% !important;
            max-height: 400px;
        }
        
        .chart-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--match-text);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .chart-info {
            background: var(--match-bg);
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 0.9em;
            color: var(--match-text-muted);
            border: 1px solid var(--match-border);
        }
        
        .chart-info i {
            color: var(--match-accent);
            margin-right: 8px;
        }
        .max_score {
            font-size: 12px;
        }
        .table-responsive {
            overflow-x: auto;
        }
        .table th, .table td {
            text-align: center;
            padding: 0.5rem;
            font-size: 14px;
        }
        .btn {
            margin-right: 10px;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .table th, .table td {
                font-size: 12px;
            }
            .btn {
                font-size: 12px;
            }
            
            .charts-section {
                padding: 15px;
                margin: 15px 0;
            }
            
            .chart-container {
                min-height: 300px;
                padding: 15px;
            }
            
            .chart-title {
                font-size: 1rem;
            }
            
            .chart-info {
                font-size: 0.8em;
                padding: 8px 12px;
            }
        }
        
        @media (max-width: 576px) {
            .chart-container {
                min-height: 250px;
                padding: 10px;
            }
            
            .chart-title {
                font-size: 0.9rem;
            }
            
            .chart-info {
                font-size: 0.75em;
                padding: 6px 10px;
            }
        }

        .alert-mobile {
            background-color: #fff3cd;
            color: #856404;
            padding: 0.75rem 1.25rem;
            border: 1px solid #ffeeba;
            border-radius: 0.5rem;
            margin: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            text-align: center;
        }

        .alert-mobile i {
            font-size: 1.25rem;
        }

        .alert-mobile span {
            font-weight: bold;
        }

        /* Shooter Info Styles */
        .shooter-info-container {
            background-color: #f8f9fa;
            border-radius: 0.5rem;
            padding: 1.25rem;
            margin: 1rem 0;
            border-left: 4px solid var(--match-accent);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .shooter-info-container h3 {
            color: var(--match-accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .shooter-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.25rem;
            margin-top: 1rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background-color: white;
            border-radius: 0.5rem;
            border: 1px solid #dee2e6;
            min-height: 56px;
            height: 100%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .info-item i {
            color: var(--match-accent);
            width: 28px;
            text-align: center;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .info-item .label {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .info-item .value {
            color: #212529;
            font-weight: 600;
            margin-left: auto;
            text-align: right;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 1rem;
        }

        /* Special case for shooter name */
        .info-item:first-child .value {
            max-width: none;
            white-space: normal;
            word-break: break-word;
        }

        /* Sync time container */
        .sync-time-container {
            margin-top: 1.5rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 0.5rem;
            border: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .sync-time-container i {
            color: var(--match-accent);
            font-size: 1.2rem;
            width: 28px;
            text-align: center;
        }

        .sync-time-container .label {
            color: #6c757d;
            font-size: 1rem;
            font-weight: 500;
        }

        .sync-time-container .value {
            color: #212529;
            font-weight: 600;
            margin-left: auto;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .shooter-info-container {
                padding: 1rem;
            }

            .shooter-info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .info-item {
                padding: 0.75rem;
                min-height: 48px;
            }

            .info-item i {
                width: 24px;
                font-size: 1rem;
            }

            .info-item .label {
                font-size: 0.9rem;
            }

            .info-item .value {
                font-size: 0.9rem;
            }

            .sync-time-container {
                padding: 0.75rem;
            }

            .sync-time-container i {
                width: 24px;
                font-size: 1rem;
            }

            .sync-time-container .label {
                font-size: 0.9rem;
            }

            .sync-time-container .value {
                font-size: 0.9rem;
            }
        }

        /* Quick Navigation Styles */
        .quick-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .quick-nav-item {
            text-decoration: none;
            color: #fff;
            background: var(--match-accent);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid var(--match-accent-dark);
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .quick-nav-item:hover {
            background: var(--match-accent-dark);
            color: white;
            transform: translateY(-1px);
        }

        .quick-nav-item i {
            font-size: 0.9rem;
        }

        /* Portrait-only elements */
        .portrait-only {
            display: none !important;
        }

        /* Portrait mode specific styles */
        @media (max-width: 768px) and (orientation: portrait) {
            .portrait-only {
                display: table-cell !important;
            }

            .landscape-only {
                display: none !important;
            }

            /* Score info in portrait mode */
            .score-info {
                display: flex;
                flex-direction: column;
                gap: 0.25rem;
                font-size: 11px;
            }

            .score-info span {
                display: inline-block;
                padding: 0.15rem 0.3rem;
                background-color: #f8f9fa;
                border-radius: 3px;
                margin: 1px 0;
            }

            .score-info .hit-factor {
                color: var(--match-accent);
                font-weight: bold;
            }

            .score-info .stage-points {
                color: var(--match-info-blue);
                font-weight: bold;
            }
        }

        /* Landscape mode and desktop - hide portrait elements */
        @media (min-width: 769px), (max-width: 768px) and (orientation: landscape) {
            .portrait-only {
                display: none !important;
            }

            .landscape-only {
                display: table-cell !important;
            }
        }

        /* Badge Styles for Categories */
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.35em 0.65em;
            font-size: 0.75em;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 0.25rem;
            color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.2s ease;
            min-width: 50px;
            justify-content: center;
            flex-shrink: 0;
            margin: 0.1rem;
            border: 1.5px solid #bdbdbd;
        }

        .badge-category {
            background-color: #f3e8ff;
            color: #6f42c1;
            padding: 0.15rem 0.5rem;
            border-radius: 0.25rem;
            border: 1.5px solid #bdbdbd;
            min-width: 60px;
            justify-content: center;
            font-size: 0.75rem;
        }

        /* Responsive adjustments for badges */
        @media (max-width: 768px) {
            .badge-category {
                padding: 0.1rem 0.3rem;
                font-size: 0.7rem;
                min-width: 40px;
            }
        }

        .badge-class {
            border: 1.5px solid #bdbdbd;
        }
        .badge-class.M {
            border-color: var(--match-accent-border);
            border-width: 1.5px;
        }
        .badge-class.A {
            border-color: #b8daff;
            border-width: 1.5px;
        }
        .badge-class.B {
            border-color: #ffe0b3;
            border-width: 1.5px;
        }
        .badge-class.C {
            border-color: #f5c6cb;
            border-width: 1.5px;
        }
        .badge-class.D {
            border-color: #e9ecef;
            border-width: 1.5px;
        }
        .badge-class.G {
            border-color: var(--match-accent-border);
            border-width: 1.5px;
        }
        .badge-class.GM {
            border-color: var(--match-accent-border);
            border-width: 1.5px;
        }
        .badge-class.U {
            border-color: #e9ecef;
            border-width: 1.5px;
        }
        .badge-division {
            border: 1.5px solid #bdbdbd;
        }
        .badge-powerfactor {
            border: 1.5px solid #bdbdbd;
        }

        /* Badge para logs de alterações */
        .badge-logs {
            background-color: #ffc107;
            color: #212529;
            border-color: #ffc107;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .badge-logs:hover {
            background-color: #e0a800;
            border-color: #e0a800;
            transform: scale(1.05);
        }

        /* Layout do stage info */
        .stage-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }

        .stage-name {
            font-weight: 500;
        }

        /* Desktop - posição e stage na mesma linha */
        @media (min-width: 769px) {
            .stage-info {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .stage-header {
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
            .badge-logs {
                order: 2;
                margin-top: 0.25rem;
                margin-bottom: 0.25rem;
            }
            
            .badge-position {
                order: 1;
            }
            
            .stage-name {
                order: 3;
            }
        }

        /* Mobile - badge abaixo do nome do stage */
        @media (max-width: 768px) {
            .stage-info {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .badge-logs {
                order: 2;
                margin-top: 0.25rem;
            }
            
            .stage-name {
                order: 1;
            }
        }

        /* Classes para controlar exibição */
        .desktop-only {
            display: none;
        }

        .mobile-only {
            display: inline-flex;
        }

        @media (min-width: 769px) {
            .desktop-only {
                display: inline-flex;
            }
            
            .mobile-only {
                display: none;
            }
        }

        /* Layout da coluna verify */
        .verify-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .verify-time {
            font-size: 0.85rem;
        }

        /* Desktop - badge e verify na mesma linha */
        @media (min-width: 769px) {
            .verify-info {
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
            }
        }

        /* Modal Styles */
        .modal-logs {
            display: none;
            position: fixed;
            z-index: 1050;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-logs-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 90%;
            max-width: 600px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .modal-logs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #dee2e6;
        }

        .modal-logs-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #333;
        }

        .modal-logs-close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .modal-logs-close:hover,
        .modal-logs-close:focus {
            color: #000;
        }

        .log-entry {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .log-entry-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e9ecef;
        }

        .log-timestamp {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

        .log-device {
            font-size: 0.85rem;
            color: #495057;
            background-color: #e9ecef;
            padding: 2px 8px;
            border-radius: 12px;
        }

        .log-changes {
            margin-top: 10px;
        }

        .change-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background-color: white;
            border-radius: 4px;
            margin-bottom: 8px;
            border-left: 3px solid var(--match-accent);
        }

        .change-field {
            font-weight: 600;
            color: #495057;
        }

        .change-values {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .change-old {
            background-color: #f8d7da;
            color: #721c24;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 0.85rem;
        }

        .change-arrow {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .change-new {
            background-color: var(--match-accent-soft);
            color: var(--match-accent-dark);
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 0.85rem;
        }

        .log-approved {
            display: inline-block;
            background-color: var(--match-accent-soft);
            color: var(--match-accent-dark);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }

        .log-active {
            display: inline-block;
            background-color: var(--match-accent);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }

        .log-historical {
            display: inline-block;
            background-color: #fff3cd;
            color: #856404;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }

        /* Estilos para valores atuais */
        .current-values {
            margin-top: 15px;
            padding: 12px;
            background-color: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid var(--match-accent);
        }

        .current-values h6 {
            margin: 0 0 10px 0;
            color: #495057;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .current-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 8px;
        }

        .current-value-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 8px;
            background-color: white;
            border-radius: 4px;
            border: 1px solid #dee2e6;
        }

        .current-label {
            font-weight: 600;
            color: #495057;
            font-size: 0.8rem;
        }

        .current-value {
            font-weight: 700;
            color: var(--match-accent);
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .current-values {
                padding: 10px;
            }

            .current-values h6 {
                font-size: 0.8rem;
            }

            .current-values-grid {
                grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
                gap: 6px;
            }

            .current-value-item {
                padding: 3px 6px;
            }

            .current-label, .current-value {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .modal-logs-content {
                width: 95%;
                margin: 10% auto;
                padding: 15px;
            }

            .modal-logs-title {
                font-size: 1rem;
            }

            .log-entry {
                padding: 10px;
            }

            .log-entry-header {
                flex-direction: row;
                align-items: center;
                gap: 5px;
                flex-wrap: wrap;
            }

            .log-timestamp {
                font-size: 0.8rem;
            }

            .log-device {
                font-size: 0.7rem;
                padding: 1px 4px;
            }

            .log-approved, .log-historical, .log-active {
                font-size: 0.65rem;
                padding: 1px 4px;
            }

            .change-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
                padding: 6px 8px;
            }

            .change-field {
                font-size: 0.8rem;
            }

            .change-old, .change-new {
                font-size: 0.75rem;
                padding: 1px 4px;
            }

            .change-arrow {
                font-size: 0.8rem;
            }

            .change-values {
                align-self: flex-end;
            }
        }

        /* Badge de posição */
        .badge-position {
            background: linear-gradient(45deg, var(--match-accent), var(--match-accent-dark)) !important;
            color: white !important;
            border: none !important;
            font-weight: bold !important;
            box-shadow: 0 2px 4px rgba(var(--match-brand-rgb), 0.3) !important;
            padding: 2px 6px !important;
            font-size: 0.7rem !important;
            width: 32px !important;
            text-align: center !important;
            display: inline-block !important;
        }

        /* Responsive adjustments for position badge */
        @media (max-width: 768px) {
            .badge-position {
                display: none !important;
            }
        }

        /* Desktop - posição ao lado */
        @media (min-width: 769px) {
            .badge-position {
                display: inline-block !important;
                margin-right: 8px !important;
                vertical-align: middle !important;
            }
            
            /* Diminuir fonte da legenda no desktop */
            .info-box h5 {
                font-size: 1.2rem !important;
                margin-bottom: 0.8rem !important;
            }
            
            .info-box h6 {
                font-size: 1rem !important;
                margin-bottom: 0.5rem !important;
                margin-top: 0.8rem !important;
            }
            
            .info-box ul {
                font-size: 0.9rem !important;
                line-height: 1.4 !important;
            }
            
            .info-box li {
                margin-bottom: 0.4rem !important;
            }
            
            .info-box strong {
                font-size: 0.95rem !important;
            }
            
            .info-box ul ul {
                font-size: 0.85rem !important;
                margin-top: 0.3rem !important;
                margin-bottom: 0.4rem !important;
            }
            
            .info-box ul ul li {
                margin-bottom: 0.25rem !important;
            }
        }

        /* Mobile - apenas texto da posição */
        @media (max-width: 768px) {
            .position-text-mobile {
                display: none !important;
            }
            
            /* Diminuir fonte da legenda no mobile */
            .info-box h5 {
                font-size: 1rem !important;
                margin-bottom: 0.6rem !important;
            }
            
            .info-box h6 {
                font-size: 0.85rem !important;
                margin-bottom: 0.4rem !important;
                margin-top: 0.6rem !important;
            }
            
            .info-box ul {
                font-size: 0.75rem !important;
                line-height: 1.3 !important;
            }
            
            .info-box li {
                margin-bottom: 0.25rem !important;
            }
            
            .info-box strong {
                font-size: 0.8rem !important;
            }
            
            .info-box ul ul {
                font-size: 0.7rem !important;
                margin-top: 0.15rem !important;
                margin-bottom: 0.25rem !important;
            }
            
            .info-box ul ul li {
                margin-bottom: 0.15rem !important;
            }
        }

        @media (min-width: 769px) {
            .position-text-mobile {
                display: none !important;
            }
        }
        
        /* Ajustes adicionais para telas muito pequenas */
        @media (max-width: 480px) {
            .info-box {
                padding: 0.6rem !important;
            }
            
            .info-box h5 {
                font-size: 0.9rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            .info-box h6 {
                font-size: 0.8rem !important;
                margin-bottom: 0.3rem !important;
                margin-top: 0.5rem !important;
            }
            
            .info-box ul {
                font-size: 0.7rem !important;
                line-height: 1.2 !important;
            }
            
            .info-box strong {
                font-size: 0.75rem !important;
            }
            
            .info-box ul ul {
                font-size: 0.65rem !important;
            }
        }

        .footer-container {
            margin-top: 3rem;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #e9ecef;
            background-color: #f8f9fa;
            border-radius: 0.5rem;
        }

        .footer-content {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-content a {
            color: var(--match-accent);
            text-decoration: none;
            font-weight: 500;
        }

        .footer-content a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .footer-container {
                margin-top: 2rem;
                padding: 1.5rem 0;
            }
            
            .footer-content {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                margin-top: 1.5rem;
                padding: 1rem 0;
            }
            
            .footer-content {
                font-size: 0.75rem;
            }
        }

/* --- Padrão IM / match kiosk (shooter verify) --- */
.match-page--shooter-verify .container.match-page {
    max-width: 1200px;
    padding-bottom: 2rem;
}

.match-page--shooter-verify .match-section {
    background: var(--match-card, #fff);
    border: 1px solid var(--match-border, #e9ecef);
    border-radius: 0.75rem;
    box-shadow: var(--match-shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.06));
    padding: 1rem;
    margin-bottom: 1rem;
}

.match-page--shooter-verify .match-section__title {
    font-size: var(--match-text-base, 1rem);
    font-weight: 700;
    color: var(--match-text, #2c3e50);
    margin: 0 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--match-border, #e9ecef);
}

.match-page--shooter-verify .athlete-verify-hero {
    margin: 0.5rem 0 1rem;
    padding: 0 0.25rem;
}

.match-page--shooter-verify .athlete-verify-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--match-text-xs, 0.8rem);
    color: var(--match-text-muted, #6c757d);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.match-page--shooter-verify .athlete-verify-hero__back:hover {
    color: var(--match-accent);
}

.match-page--shooter-verify .athlete-verify-hero__name {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--match-text, #2c3e50);
    margin: 0 0 0.35rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.match-page--shooter-verify .athlete-verify-hero__match {
    margin: 0 0 0.35rem;
    font-size: var(--match-text-sm, 0.875rem);
    color: var(--match-text-muted, #6c757d);
    line-height: 1.4;
}

.match-page--shooter-verify .athlete-verify-hero__match a {
    color: var(--match-accent-dark, #1e7e34);
    text-decoration: none;
    font-weight: 600;
}

.match-page--shooter-verify .athlete-verify-hero__match a:hover {
    text-decoration: underline;
}

.match-page--shooter-verify .athlete-verify-hero__sync {
    margin: 0;
    font-size: var(--match-text-xs, 0.8rem);
    color: var(--match-text-muted, #6c757d);
}

.match-page--shooter-verify .athlete-verify-meta {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.match-page--shooter-verify .athlete-verify-meta__item {
    display: grid;
    grid-template-columns: minmax(5.5rem, 7rem) 1fr;
    gap: 0.5rem 0.75rem;
    align-items: center;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--match-border, #eef0f2);
}

.match-page--shooter-verify .athlete-verify-meta__item:last-child {
    border-bottom: none;
}

.match-page--shooter-verify .athlete-verify-meta dt {
    margin: 0;
    font-size: var(--match-text-xs, 0.8rem);
    font-weight: 600;
    color: var(--match-text-muted, #6c757d);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.match-page--shooter-verify .athlete-verify-meta dd {
    margin: 0;
    font-size: var(--match-text-sm, 0.875rem);
    color: var(--match-text, #2c3e50);
}

.match-page--shooter-verify .athlete-verify-meta__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.match-page--shooter-verify .athlete-verify-meta__points {
    font-weight: 700;
    font-size: var(--match-text-base, 1rem);
    color: var(--match-accent-dark, #1e7e34);
}

.match-page--shooter-verify .athlete-verify-meta__percent {
    font-weight: 700;
    font-size: var(--match-text-base, 1rem);
    color: var(--match-info-blue, #0d47a1);
}

.match-page--shooter-verify .badge-position {
    background: linear-gradient(
        45deg,
        var(--match-accent, #28a745),
        var(--match-accent-dark, #1e7e34)
    ) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 4px rgba(var(--match-brand-rgb, 40, 167, 69), 0.3) !important;
    padding: 0.2em 0.45em !important;
    font-size: var(--match-badge-size, 0.75rem) !important;
    min-width: 2rem !important;
    text-align: center !important;
    display: inline-block !important;
}

.match-page--shooter-verify .shooter-stage-card__value--pos {
    color: var(--match-accent-dark, #1e7e34);
}

/* Badges — contraste (vence .badge { color: white } legado) */
.match-page--shooter-verify .athlete-verify-meta .badge {
    color: var(--match-text, #2c3e50);
    background-color: var(--match-bg, #f8f9fa);
    border: 1.5px solid #bdbdbd;
    font-size: var(--match-badge-size, 0.75rem);
    padding: 0.28em 0.6em;
    min-width: auto;
    margin: 0;
    box-shadow: none;
}

.match-page--shooter-verify .athlete-verify-meta .badge-division {
    background-color: var(--match-bg, #f8f9fa);
    color: var(--match-text, #495057);
    font-weight: 700;
}

.match-page--shooter-verify .athlete-verify-meta .badge-powerfactor {
    background-color: #e3f2fd;
    color: var(--match-info-blue, #0d47a1);
    border-color: #b8daff;
}

.match-page--shooter-verify .athlete-verify-meta .badge-category {
    background-color: #f3e8ff;
    color: #6f42c1;
    border-color: #d1b3ff;
}

.match-page--shooter-verify .athlete-verify-meta .badge-team {
    background-color: #fff3cd;
    color: #000;
    border-color: #ffeeba;
}

.match-page--shooter-verify .athlete-verify-meta .badge-class {
    background-color: var(--match-bg, #f8f9fa);
    color: var(--match-text, #495057);
}

.match-page--shooter-verify .athlete-verify-meta .badge-class.M,
.match-page--shooter-verify .athlete-verify-meta .badge-class.G {
    background-color: var(--match-accent-soft, #d4edda);
    color: var(--match-accent-dark, #1e7e34);
    border-color: var(--match-accent-border, #c3e6cb);
}

.match-page--shooter-verify .athlete-verify-meta .badge-class.A {
    background-color: #e3f2fd;
    color: var(--match-info-blue, #0d47a1);
    border-color: #b8daff;
}

.match-page--shooter-verify .athlete-verify-meta .badge-class.B {
    background-color: #fff3e6;
    color: #fd7e14;
    border-color: #ffe0b3;
}

.match-page--shooter-verify .athlete-verify-meta .badge-class.C {
    background-color: #fce8e8;
    color: #dc3545;
    border-color: #f5c6cb;
}

.match-page--shooter-verify .athlete-verify-meta .badge-class.D,
.match-page--shooter-verify .athlete-verify-meta .badge-class.U {
    background-color: var(--match-bg, #f8f9fa);
    color: var(--match-text-muted, #6c757d);
}

.match-page--shooter-verify .athlete-verify-meta .badge-class.GM {
    background-color: #dbeafe;
    color: var(--match-accent-dark, #1e7e34);
    border-color: #b8daff;
}

.match-page--shooter-verify .shooter-stages-table-wrap {
    margin-top: 0;
    border-radius: 0.5rem;
    overflow: auto;
}

.match-page--shooter-verify .shooter-stages-table-wrap .table thead th {
    background: var(--match-accent-soft, #d4edda);
    color: var(--match-accent-dark, #1e7e34);
    border-bottom: 2px solid var(--match-accent-border, #c3e6cb);
    font-size: var(--match-table-size, 13px);
    white-space: nowrap;
}

.match-page--shooter-verify .shooter-stages-mobile {
    display: none;
}

.match-page--shooter-verify .shooter-stage-card__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--match-border, #e9ecef);
}

.match-page--shooter-verify .shooter-stage-card__title {
    font-weight: 700;
    font-size: var(--match-text-sm, 0.875rem);
    flex: 1;
}

.match-page--shooter-verify .shooter-stage-card__logs {
    border: none;
    cursor: pointer;
}

.match-page--shooter-verify .shooter-stage-card__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.45rem;
}

.match-page--shooter-verify .shooter-stage-card__stat {
    background: var(--match-bg, #f8f9fa);
    border-radius: 0.375rem;
    padding: 0.35rem 0.4rem;
    text-align: center;
}

.match-page--shooter-verify .shooter-stage-card__label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--match-text-muted, #6c757d);
    font-weight: 600;
}

.match-page--shooter-verify .shooter-stage-card__value {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--match-text, #2c3e50);
}

.match-page--shooter-verify .shooter-stage-card__hits {
    font-size: var(--match-text-xs, 0.8rem);
    color: var(--match-text-muted, #6c757d);
    line-height: 1.35;
}

.match-page--shooter-verify .shooter-stage-card__verify-time {
    margin-top: 0.35rem;
    font-size: var(--match-text-xs, 0.75rem);
    color: var(--match-accent-dark, #1e7e34);
}

.match-page--shooter-verify .charts-section.match-section {
    padding: 1rem;
}

.match-page--shooter-verify .charts-section .chart-container {
    box-shadow: none;
    border: 1px solid var(--match-border, #e9ecef);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .match-page--shooter-verify .charts-section.match-section {
        padding: 0.75rem;
    }

    .match-page--shooter-verify .charts-section .chart-container {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .match-page--shooter-verify .charts-section .chart-title {
        font-size: var(--match-text-sm, 0.875rem);
        line-height: 1.35;
    }

    .match-page--shooter-verify .charts-section .chart-info {
        font-size: var(--match-text-xs, 0.8rem);
        padding: 0.5rem 0.65rem;
    }
}

.match-page--shooter-verify .athlete-verify-legend.accordion--compact {
    padding: 0;
    overflow: hidden;
}

.match-page--shooter-verify .athlete-verify-legend .accordion-header {
    padding: 0.75rem 1rem;
    margin: 0;
    background: var(--match-bg, #f8f9fa);
    border: none;
    border-radius: 0;
}

.match-page--shooter-verify .athlete-verify-legend .accordion-content {
    border: none;
}

.match-page--shooter-verify .athlete-verify-legend__body {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 1rem 1rem;
    margin: 0;
}

@media (max-width: 768px) and (orientation: portrait) {
    .match-page--shooter-verify .shooter-stages-table-wrap {
        display: none !important;
    }

    .match-page--shooter-verify .shooter-stages-mobile {
        display: block;
        padding: 0;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .match-page--shooter-verify .shooter-stages-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .match-page--shooter-verify .shooter-stages-mobile {
        display: none !important;
    }
}
