/* ==========================================
   ANTUTU RANKING TABLE
   ========================================== */
.antutu-table {
    font-size: 13px;
}

.antutu-table th,
.antutu-table td {
    white-space: normal;
    vertical-align: middle;
}

.antutu-table td:first-child {
    text-align: center;
    width: 40px;
}

/* Rank number */
.antutu-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-input);
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 12px;
}

.antutu-rank-top {
    background: linear-gradient(135deg, var(--snes-yellow), #f39c12);
    color: #1a1a2e;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.4);
}

/* Total score cell with progress bar */
.antutu-total-cell {
    min-width: 160px;
}

.antutu-total-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.antutu-estimated {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--snes-yellow);
    background: rgba(241, 196, 15, 0.15);
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
}

.antutu-bar-track {
    width: 100%;
    height: 6px;
    background: var(--bg-input);
    border-radius: 3px;
    overflow: hidden;
}

.antutu-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--snes-purple), var(--gc-purple));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* "Usado en" column */
.antutu-usedin {
    font-size: 12px;
    color: var(--text-secondary);
    min-width: 200px;
}

.antutu-more {
    color: var(--text-muted);
    font-style: italic;
}

.antutu-none {
    color: var(--text-muted);
}

/* Disclaimer */
.antutu-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}
