    /* ========================================
       DESIGN SYSTEM — variáveis globais
       ======================================== */
    :root {
      --clr-bg:        #191919;
      --clr-surface:   rgba(255,255,255,0.04);
      --clr-border:    rgba(255,255,255,0.09);
      --clr-accent:    #f97316;
      --clr-accent-hv: #fb923c;
      --clr-positive:  #22c55e;
      --clr-warning:   #eab308;
      --clr-danger:    #ef4444;
      --clr-info:      #6366f1;
      --clr-text:      #eeeeee;
      --clr-muted:     #888888;
      --clr-faint:     #555555;

      /* Safety tiers */
      --tier-splus:  #FFD700;
      --tier-s:      #C0C0C0;
      --tier-a:      #00FF00;
      --tier-b:      #FFFF00;
      --tier-c:      #FFA500;
      --tier-d:      #FF0000;
      --tier-f:      #800000;

      --radius-sm: 4px;
      --radius:    8px;
      --radius-lg: 12px;
      --transition: 180ms ease;
      --font-main: 'Inter', Arial, 'Helvetica Neue', sans-serif;
    }

    /* ========================================
       RESET
       ======================================== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { min-width: 1010px; }
    body {
      background: var(--clr-bg);
      color: var(--clr-text);
      font-family: var(--font-main);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 14px;
      line-height: 1.4;
    }
    a { color: #fb923c; text-decoration: none; }
    a:hover { text-decoration: underline; }
    ::selection { background: rgba(249,115,22,0.3); }

    /* ========================================
       VIDEO DE FUNDO
       ======================================== */
    #bg-video {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 0;
      overflow: hidden;
    }
    #bg-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(8px) brightness(0.35);
      transform: scale(1.1);
    }
    #bg-video::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.12) 0px,
        rgba(0,0,0,0.12) 1px,
        transparent 1px,
        transparent 3px
      );
      pointer-events: none;
    }

    /* ========================================
       CONTEUDO (acima do video)
       ======================================== */
    .page { position: relative; z-index: 1; }
    .wrapper {
      width: 970px;
      margin: 0 auto;
      padding: 40px 20px 30px;
      position: relative;
    }

    /* ========================================
       HEADER: Logo + Navegacao
       ======================================== */
    .header {
      margin-bottom: 20px;
    }
    .header-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .header h1 {
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: inline-block;
    }
    .header h1 a { color: #fff; text-decoration: none; }
    .header .subtitle {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-top: 2px;
    }
    .header .online-total { font-weight: bold; color: #f97316; }

    /* Botoes do header (Login + Criar Servidor) */
    .header-buttons {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .btn-login {
      display: inline-block;
      padding: 4px 16px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-sm);
      transition: background 0.2s;
      line-height: 27px;
    }
    .btn-login:hover { background: rgba(249,115,22,0.5); text-decoration: none; }
    .btn-steam {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: #1b2838;
      color: #c7d5e0;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none;
      border: 1px solid #4c6b8a;
      border-radius: var(--radius-sm);
      transition: background 0.2s, border-color 0.2s;
      line-height: 27px;
      white-space: nowrap;
    }
    .btn-steam:hover { background: #2a475e; border-color: #66c0f4; color: #fff; text-decoration: none; }
    .btn-criar {
      display: inline-block;
      padding: 4px 16px;
      background: rgba(194,0,0,0.7);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      border: 1px solid rgba(194,0,0,0.4);
      border-radius: var(--radius-sm);
      transition: background 0.2s;
      line-height: 27px;
    }
    .btn-criar:hover { background: rgba(194,0,0,0.9); text-decoration: none; }

    /* Barra laranja fina no topo da pagina */
    .top-accent { height: 3px; background: linear-gradient(90deg, #f97316, #ea580c, #f97316); }

    /* Abas de navegacao do ranking */
    .nav-tabs {
      background: rgba(0,0,0,0.6);
      padding-left: 10px;
      display: flex;
      border-bottom: 2px solid rgba(249,115,22,0.4);
      flex-wrap: wrap;
    }
    .nav-tab {
      display: inline-block;
      color: #fff;
      padding: 0 14px;
      line-height: 35px;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      text-decoration: none;
      opacity: 0.5;
      transition: opacity 0.2s, background-color 0.2s;
      cursor: pointer;
      position: relative;
      white-space: nowrap;
    }
    .nav-tab::before {
      content: '>>';
      position: absolute;
      left: 2px;
      bottom: 2px;
      font-size: 10px;
      opacity: 0.5;
      transition: opacity 0.2s;
    }
    .nav-tab:hover {
      opacity: 1;
      background: rgba(249,115,22,0.7);
      text-decoration: none;
    }
    .nav-tab:hover::before { opacity: 0; }
    .nav-tab.selected { opacity: 1; border-bottom: 2px solid #f97316; }
    .nav-divider {
      width: 1px;
      background: rgba(249,115,22,0.3);
      margin: 6px 8px;
      align-self: stretch;
    }

    /* ========================================
       SELETOR DE SERVIDORES
       ======================================== */
    .servers-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin-bottom: 0;
    }
    .srv-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 1 1 auto;
      min-width: 180px;
      max-width: 280px;
      background: rgba(0,0,0,0.7);
      padding: 10px 14px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      font-size: 13px;
      border-bottom: 2px solid transparent;
      border-right: 1px solid rgba(255,255,255,0.04);
    }
    .srv-item:last-child { border-right: none; }
    .srv-item:hover { background: rgba(249,115,22,0.12); }
    .srv-item.selected { background: rgba(249,115,22,0.2); border-bottom-color: #f97316; }
    .srv-item .srv-name {
      font-weight: 700;
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex: 1;
      margin-right: 8px;
    }
    .srv-item .srv-count {
      background: rgba(0,0,0,0.4);
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 13px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .srv-item .srv-clients { font-weight: 700; }
    .srv-item .srv-max { font-size: 11px; color: rgba(255,255,255,0.5); }
    .srv-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #444;
      flex-shrink: 0;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .srv-dot.online {
      background: #22c55e;
      box-shadow: 0 0 5px #22c55e, 0 0 10px rgba(34,197,94,0.4);
    }

    /* ========================================
       PAINEL DO SERVIDOR SELECIONADO
       ======================================== */
    .server-panel {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      padding: 15px;
      margin-bottom: 25px;
    }
    .server-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .server-panel h2 {
      font-weight: 600;
      font-size: 14px;
    }
    /* Badge de status de conexão */
    .conn-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      color: var(--clr-faint);
      letter-spacing: 0.04em;
    }
    .conn-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--clr-faint);
      transition: background var(--transition);
    }
    .conn-badge.connected .conn-dot { background: var(--clr-positive); }
    .conn-badge.connected #connLabel { color: var(--clr-positive); }
    .conn-badge.error .conn-dot { background: var(--clr-danger); }
    .conn-badge.error #connLabel { color: var(--clr-danger); }
    .p-row {
      display: flex;
      margin-bottom: 3px;
    }
    .p-name {
      width: 200px;
      height: 25px;
      line-height: 25px;
      padding: 0 8px;
      background: rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(255,255,255,0.15);
      font-size: 12px;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .p-car {
      flex: 1;
      height: 25px;
      line-height: 25px;
      padding: 0 8px;
      background: rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(255,255,255,0.15);
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      margin-left: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .p-rank-badge {
      display: inline-block;
      padding: 1px 6px;
      font-size: 9px;
      white-space: nowrap;
      font-weight: 700;
      line-height: 16px;
      border-radius: 2px;
      margin-right: 5px;
      vertical-align: middle;
      color: #000;
    }
    .p-empty {
      padding: 12px 0;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    /* Botao ENTRAR */
    .btn-entrar {
      display: block;
      text-align: center;
      margin-top: 10px;
      padding: 10px 0;
      background: linear-gradient(180deg, #f97316, #ea580c);
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: filter 0.2s, transform 0.1s;
    }
    .btn-entrar:hover {
      filter: brightness(1.2);
      text-decoration: none;
      transform: translateY(-1px);
    }
    .btn-entrar:active { transform: translateY(0); }
    .btn-entrar.disabled {
      opacity: 0.35;
      pointer-events: none;
      cursor: default;
    }

    /* ========================================
       AREA DE CONTEUDO: Mapa + Filtros
       ======================================== */
    .content-area {
      position: relative;
      margin-bottom: 25px;
    }
    .map-wrap {
      width: 100%;
      height: 550px;
      position: relative;
      overflow: hidden;
      background: #020208;
      -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 82%, transparent 100%);
      mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 82%, transparent 100%);
      cursor: grab;
    }
    .map-wrap:active { cursor: grabbing; }
    .map-wrap.map-hidden { display: none; }
    .holo-perspective {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
    }
    .holo-scene {
      position: relative;
      width: 96%; height: 96%;
      animation: holoFloat 8s ease-in-out infinite;
    }
    @keyframes holoFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-6px); }
    }
    .holo-scene canvas { width: 100%; height: 100%; display: block; }
    .holo-scanlines {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(0,255,180,0.012) 2px, rgba(0,255,180,0.012) 4px);
      pointer-events: none; z-index: 2;
    }
    .holo-border {
      display: none;
    }
    .holo-glow {
      position: absolute; top: 50%; left: 50%; width: 60%; height: 60%;
      transform: translate(-50%, -50%);
      background: radial-gradient(ellipse, rgba(0,255,180,0.06) 0%, transparent 70%);
      filter: blur(40px); pointer-events: none;
      animation: holoGlow 4s ease-in-out infinite;
    }
    @keyframes holoGlow { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } }
    .holo-scan-beam {
      position: absolute; left: 0; width: 100%; height: 3px;
      background: linear-gradient(to bottom, transparent, rgba(0,255,180,0.05), transparent);
      pointer-events: none; z-index: 4;
      animation: scanBeam 5s linear infinite;
    }
    @keyframes scanBeam { 0% { top: 0; } 100% { top: 100%; } }
    .map-track-label {
      position: absolute;
      top: 8px; left: 10px;
      font-size: 10px;
      color: rgba(0,255,180,0.3);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      pointer-events: none;
      z-index: 5;
    }
    /* Player hover tooltip */
    .player-tooltip {
      position: absolute; z-index: 100;
      background: rgba(8,8,18,0.95);
      border: 1px solid rgba(0,255,180,0.25);
      border-radius: 6px;
      padding: 8px 10px;
      pointer-events: none;
      display: none;
      min-width: 150px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }
    .player-tooltip.show { display: block; }
    .player-tooltip-img {
      width: 140px; height: 78px;
      object-fit: cover; border-radius: 3px;
      margin-bottom: 6px; background: rgba(0,0,0,0.4);
      display: block;
    }
    .player-tooltip-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
    .player-tooltip-car { font-size: 10px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
    .player-tooltip-speed { font-size: 16px; font-weight: 800; color: #00ffb4; }
    .map-label {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      margin-top: 5px;
    }

    .filters-area {
      display: flex;
      gap: 20px;
      margin-top: 10px;
    }
    .filter-group { flex: 1; }
    .filter-group label {
      display: block;
      font-size: 10px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 4px;
    }
    .filter-group select {
      background: #333;
      color: #fff;
      border: none;
      font-family: inherit;
      cursor: pointer;
      outline: none;
      width: 100%;
    }
    .sel-big {
      font-size: 24px;
      font-weight: bold;
      padding: 5px 8px;
    }
    .sel-normal {
      font-size: 14px;
      padding: 5px 8px;
    }

    /* ========================================
       TITULO DE SECAO
       ======================================== */
    .section-head {
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-bottom: 2px solid rgba(249,115,22,0.3);
      padding-bottom: 10px;
      margin-bottom: 16px;
      color: rgba(255,255,255,0.8);
    }

    /* ========================================
       TABELA DE RANKING
       ======================================== */
    .tbl {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      margin-bottom: 25px;
    }
    .tbl thead td {
      text-transform: uppercase;
      font-weight: 600;
      font-size: 11px;
      padding: 10px 12px;
      border-bottom: 2px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em;
      white-space: nowrap;
    }
    .tbl tbody tr:nth-child(odd) td { background: rgba(255,255,255,0.06); }
    .tbl tbody tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
    .tbl tbody tr:hover td { background: rgba(255,255,255,0.12); }
    .tbl td {
      padding: 10px 12px;
      text-align: center;
      vertical-align: middle;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .tbl .td-left { text-align: left; }
    .tbl .td-right { text-align: right; }
    .tbl .rank {
      font-weight: 700;
      width: 40px;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }
    .tbl .record {
      font-weight: 600;
      font-size: 16px;
      text-align: right;
      width: 100px;
    }
    .tbl .score-val {
      font-weight: 600;
      font-size: 15px;
    }
    .tbl .date-col {
      letter-spacing: 0.05em;
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      white-space: nowrap;
    }
    .tbl .car-col { color: rgba(255,255,255,0.6); font-size: 13px; }
    .tbl .stage-col {
      display: inline-block;
      background: rgba(0,0,0,0.3);
      padding: 2px 8px;
      font-size: 12px;
      border-radius: var(--radius-sm);
    }
    .tbl a { color: #fb923c; text-decoration: none; }
    .tbl a:hover { text-decoration: underline; }

    /* Safety rank badge in table */
    .rank-badge {
      display: inline-block;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      color: #000;
      white-space: nowrap;
      letter-spacing: 0.05em;
      min-width: 28px;
      text-align: center;
    }
    .rating-cell {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
    }
    .rating-num {
      font-weight: 700;
      font-size: 16px;
      font-variant-numeric: tabular-nums;
      min-width: 40px;
      text-align: right;
    }
    .rating-bar {
      display: inline-block;
      width: 80px;
      height: 8px;
      background: rgba(255,255,255,0.12);
      border-radius: 4px;
      overflow: hidden;
      vertical-align: middle;
      flex-shrink: 0;
    }
    .rating-bar-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 0.4s ease;
    }
    /* Input device icons */
    .td-center { text-align: center; }
    .input-icon-lg {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 0.65;
      color: rgba(255,255,255,0.85);
    }
    .input-icon-lg.input-unknown {
      opacity: 0.35;
      color: rgba(255,255,255,0.4);
    }

    .empty-msg {
      padding: 40px;
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.25);
    }

    /* Link clicável no ranking */
    .tbl-player-link {
      color: inherit;
      text-decoration: none;
    }
    .tbl-player-link:hover {
      color: var(--clr-accent);
      text-decoration: underline;
    }

    /* ======================================
       SAFETY RATING — seção explicativa
       ====================================== */
    .safety-explainer {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 20px 22px;
      margin-bottom: 20px;
    }
    .safety-exp-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .safety-exp-sub {
      font-size: 12px;
      color: var(--clr-muted);
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .safety-tiers {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 14px;
    }
    .safety-tier {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 12px;
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius);
    }
    .safety-tier-badge {
      flex-shrink: 0;
      min-width: 44px;
      text-align: center;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      color: #000;
      letter-spacing: 0.05em;
    }
    .safety-tier-range {
      flex-shrink: 0;
      font-size: 11px;
      color: var(--clr-faint);
      font-variant-numeric: tabular-nums;
      width: 70px;
    }
    .safety-tier-desc {
      font-size: 12px;
      color: var(--clr-muted);
      line-height: 1.4;
    }
    .safety-exp-note {
      font-size: 11px;
      color: var(--clr-faint);
      line-height: 1.5;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 12px;
    }

    /* ========================================
       PRICING CARDS
       ======================================== */
    .pricing-grid {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .plan-card {
      background: rgba(0,0,0,0.6);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 25px 20px;
      width: 280px;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s;
    }
    .plan-card:hover {
      border-color: rgba(249,115,22,0.4);
      transform: translateY(-2px);
    }
    .plan-card.plan-popular {
      border-color: #f97316;
      position: relative;
    }
    .plan-badge {
      position: absolute;
      top: -10px;
      right: 15px;
      background: #f97316;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 10px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .plan-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 5px;
    }
    .plan-price {
      font-size: 32px;
      font-weight: 800;
      color: #f97316;
      margin-bottom: 15px;
    }
    .plan-price span {
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
    }
    .plan-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      text-align: left;
    }
    .plan-features li {
      padding: 5px 0;
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .plan-features li::before {
      content: '\2713';
      color: #22c55e;
      font-weight: bold;
      margin-right: 8px;
    }
    .plan-btn {
      display: block;
      padding: 10px 0;
      background: linear-gradient(180deg, #f97316, #ea580c);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: 0.1em;
      transition: filter 0.2s;
    }
    .plan-btn:hover { filter: brightness(1.2); text-decoration: none; }
    .plan-btn-free {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .plan-btn-disabled {
      background: rgba(255,255,255,0.05);
      color: #666;
      cursor: not-allowed;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .plan-btn-disabled:hover { filter: none; }
    .plan-btn-current {
      background: rgba(249,115,22,0.15);
      color: #f97316;
      border: 1px solid rgba(249,115,22,0.3);
      cursor: default;
    }
    .plan-btn-current:hover { filter: none; }

    /* ========================================
       CAR CLASS GRID
       ======================================== */
    .class-section {
      margin-bottom: 20px;
    }
    .class-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .class-tag {
      display: inline-block;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: var(--radius-sm);
    }
    .class-tag-jdm { background: #dc2626; color: #fff; }
    .class-tag-euro { background: #2563eb; color: #fff; }
    .class-tag-other { background: #7c3aed; color: #fff; }
    .class-count {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
    }
    .car-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 8px;
    }
    .car-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 6px 10px;
      font-size: 12px;
      color: rgba(255,255,255,0.8);
      transition: border-color 0.2s;
    }
    .car-chip:hover {
      border-color: rgba(249,115,22,0.4);
    }
    .car-chip .car-slots {
      font-size: 10px;
      color: rgba(255,255,255,0.35);
    }
    .car-card {
      background: rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: border-color 0.2s, transform 0.1s;
    }
    .car-card:hover {
      border-color: rgba(249,115,22,0.4);
      transform: translateY(-1px);
    }
    .car-card-img {
      width: 100%;
      height: 110px;
      background: rgba(0,0,0,0.3);
      overflow: hidden;
    }
    .car-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .car-card-info {
      padding: 6px 8px;
    }
    .car-card-name {
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* ========================================
       DOWNLOAD CARDS
       ======================================== */
    .dl-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
      margin-bottom: 24px;
    }
    .dl-card {
      background: rgba(0,0,0,0.6);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s;
    }
    .dl-card:hover { border-color: rgba(249,115,22,0.4); }
    .dl-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .dl-card .dl-count {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      margin-bottom: 12px;
    }
    .dl-card .dl-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 16px;
      line-height: 1.5;
      flex: 1;
    }
    .dl-btn {
      display: block;
      text-align: center;
      padding: 11px 0;
      background: linear-gradient(180deg, #f97316, #ea580c);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: 0.1em;
      border-radius: var(--radius-sm);
      transition: filter 0.2s;
    }
    .dl-btn:hover { filter: brightness(1.15); text-decoration: none; }
    .dl-info {
      margin-top: 16px;
      padding: 14px 16px;
      background: rgba(0,0,0,0.4);
      border-left: 3px solid #f97316;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      text-align: center;
      padding: 25px 0;
      font-size: 11px;
      color: rgba(255,255,255,0.3);
    }

/* ========================================
   SHARED NAV BAR
   ======================================== */
.mr-nav {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-bottom: 1px solid rgba(249,115,22,0.2);
}
.mr-nav-brand {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mr-nav-brand:hover { text-decoration: none; color: #fff; }
.mr-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.mr-nav-link {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 16px;
  line-height: 50px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.mr-nav-link:hover {
  color: #fff;
  background: rgba(249,115,22,0.15);
  text-decoration: none;
}
.mr-nav-link.active {
  color: #f97316;
  border-bottom: 2px solid #f97316;
}
.mr-nav-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
}
.mr-nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0 14px;
  line-height: 50px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.mr-nav-user:hover {
  background: rgba(249,115,22,0.15);
  text-decoration: none;
}
.mr-nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(249,115,22,0.5);
}
.mr-nav-avatar-fallback {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(249,115,22,0.15);
  border: 1.5px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #f97316;
}
.mr-nav-steam {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   SHARED FOOTER
   ======================================== */
.mr-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 30px 20px;
}
.mr-footer-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mr-footer-brand {
  font-size: 13px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: -0.01em;
}
.mr-footer-links {
  display: flex;
  gap: 20px;
}
.mr-footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.mr-footer-links a:hover { color: #f97316; text-decoration: none; }
.mr-footer-credits {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: right;
}
.mr-footer-credits a { color: rgba(255,255,255,0.35); }
.mr-footer-credits a:hover { color: #f97316; }

/* ========================================
   LANDING PAGE
   ======================================== */
.hero {
  text-align: center;
  padding: 80px 0 50px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero h1 span { color: #f97316; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 50px;
}
.srv-cards {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.srv-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px 20px;
  width: 300px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.srv-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-2px);
}
.srv-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.srv-card-track {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.srv-card-count {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}
.srv-card-max {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 15px;
}
.srv-card-join {
  display: block;
  padding: 10px 0;
  background: linear-gradient(180deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: filter 0.2s;
}
.srv-card-join:hover { filter: brightness(1.2); text-decoration: none; }
.srv-card-join.offline {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.3);
  pointer-events: none;
}
.count-empty { color: #6b7280; }
.count-low { color: #22c55e; }
.count-medium { color: #eab308; }
.count-full { color: #ef4444; }
.landing-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}
.landing-link {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s;
}
.landing-link:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.4);
  color: #f97316;
  text-decoration: none;
}

/* ========================================
   SIDE-BY-SIDE LAYOUT (Servers Left + Map Right)
   ======================================== */
.srv-map-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.srv-column {
  flex: 0 0 360px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.srv-column .servers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.map-column {
  flex: 1;
  min-width: 0;
}

/* ========================================
   SERVERS LABEL
   ======================================== */
.servers-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 14px 0;
  background: rgba(0,0,0,0.5);
}

/* ========================================
   MAP CONTROLS
   ======================================== */
.map-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 0;
}
.map-controls .ctrl-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.map-controls .ctrl-label {
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 8px;
}
.map-controls .ctrl-btn {
  background: rgba(20,20,35,0.9);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  font-family: inherit;
}
.map-controls .ctrl-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.map-controls .ctrl-btn.active {
  color: #fff;
  border-color: #f97316;
  background: rgba(249,115,22,0.15);
}

/* ========================================
   PLAYER INFO CARD (click on map)
   ======================================== */
.player-card {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  background: rgba(5,5,15,0.95);
  border: 1px solid rgba(0,255,180,0.2);
  border-radius: 8px;
  padding: 16px;
  min-width: 210px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0,255,180,0.05);
}
.player-card.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.player-card-close {
  position: absolute;
  top: 8px;
  right: 12px;
  color: rgba(255,255,255,0.25);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.player-card-close:hover { color: #fff; }
.player-card-img {
  width: 100%;
  height: 115px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
  background: rgba(0,0,0,0.3);
}
.player-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #00ffb4;
  margin-bottom: 3px;
  min-height: 20px;
  overflow: hidden;
}
.player-card-car {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  min-height: 14px;
}
.player-card-stats {
  display: flex;
  gap: 8px;
}
.player-card-stat {
  flex: 1;
  text-align: center;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  padding: 6px 4px;
}
.stat-label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.stat-value {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

/* Typewriter cursor blink */
.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: #00ffb4;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.6s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Glitch flash */
@keyframes glitchFlash {
  0% { opacity: 1; }
  10% { opacity: 0.7; transform: translateX(-2px); }
  20% { opacity: 1; transform: translateX(1px); }
  30% { opacity: 0.8; }
  100% { opacity: 1; transform: translateX(0); }
}
.glitch-once { animation: glitchFlash 0.25s linear; }

/* ========================================
   SPEED TRAP PHOTOS
   ======================================== */
.st-photo-col { width: 72px; padding: 4px 6px !important; }
.st-thumb {
  width: 64px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.15s, border-color 0.15s;
}
.st-thumb:hover {
  transform: scale(1.15);
  border-color: var(--clr-accent);
}
.st-no-photo {
  display: inline-block;
  width: 64px;
  text-align: center;
  color: var(--clr-faint);
  font-size: 11px;
}
.st-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.st-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.st-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.st-lightbox-close:hover { opacity: 1; }

/* ========================================
   V-CAT WORKS — Car Card Badge
   ======================================== */
.vcat-card {
  cursor: pointer;
  position: relative;
}
.vcat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(249,115,22,0.0);
  border-radius: var(--radius-sm);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
}
.vcat-card:hover::after {
  border-color: rgba(249,115,22,0.6);
  box-shadow: 0 0 16px rgba(249,115,22,0.15), inset 0 0 12px rgba(249,115,22,0.05);
}
.car-card-img {
  position: relative;
}
.car-card-img img.vcat-corner-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.7));
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 2;
}
.vcat-card:hover .vcat-corner-badge {
  opacity: 1;
  transform: scale(1.1);
}

/* ========================================
   V-CAT WORKS — Seção explicativa
   ======================================== */
.vcat-section {
  margin-top: 50px;
  padding: 28px 24px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vcat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
}
.vcat-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.vcat-section-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(249,115,22,0.3));
}
.vcat-section-title {
  font-size: 15px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.vcat-section-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.vcat-seals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.vcat-seal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.3s, transform 0.2s;
}
.vcat-seal-card:hover {
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-2px);
}
.vcat-seal-icon {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(234,88,12,0.1));
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.vcat-seal-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.vcat-seal-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.vcat-section-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ========================================
   V-CAT WORKS — Modal Overlay
   ======================================== */
.vcat-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.vcat-overlay.show {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
}

.vcat-modal {
  width: 680px;
  max-height: 88vh;
  background: rgba(12,12,18,0.98);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(249,115,22,0.06);
}
.vcat-overlay.show .vcat-modal {
  transform: scale(1) translateY(0);
}

/* Scrollbar styling */
.vcat-modal::-webkit-scrollbar { width: 4px; }
.vcat-modal::-webkit-scrollbar-track { background: transparent; }
.vcat-modal::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.3); border-radius: 2px; }

.vcat-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  line-height: 1;
}
.vcat-modal-close:hover {
  color: #fff;
  border-color: rgba(249,115,22,0.5);
  background: rgba(249,115,22,0.15);
}

.vcat-modal-header {
  display: flex;
  gap: 20px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vcat-modal-car-img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.vcat-modal-header-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vcat-modal-logo {
  height: 36px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(249,115,22,0.3));
  object-fit: contain;
}
.vcat-modal-stamp {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(234,88,12,0.1));
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  width: fit-content;
}
.vcat-modal-car-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.vcat-modal-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.vcat-modal-seals {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vcat-modal-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.1em;
}
.vcat-modal-seal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 6px rgba(249,115,22,0.6);
  animation: vcatPulse 2s ease-in-out infinite;
}
@keyframes vcatPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(249,115,22,0.4); }
  50% { box-shadow: 0 0 10px rgba(249,115,22,0.8); }
}

.vcat-modal-body {
  padding: 20px 24px;
}
.vcat-detail-section {
  margin-bottom: 20px;
}
.vcat-detail-section:last-child {
  margin-bottom: 0;
}
.vcat-detail-title {
  font-size: 13px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.vcat-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vcat-detail-list li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.vcat-detail-list li:last-child {
  border-bottom: none;
}
.vcat-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(249,115,22,0.6);
}

.vcat-modal-footer {
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ========================================
   V-CAT WORKS — Aba em /servidores
   ======================================== */
.vcat-tab-section {
  padding: 10px 0 30px;
}
.vcat-tab-header {
  margin-bottom: 28px;
}
.vcat-tab-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #f97316;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.vcat-tab-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 720px;
  line-height: 1.6;
}
.vcat-tab-seals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.vcat-tab-seal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.vcat-tab-seal-icon {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f97316;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: var(--radius-sm);
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.vcat-tab-seal-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.vcat-tab-seal-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.vcat-tab-cars-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
}
.vcat-tab-cars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.vcat-tab-car {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.vcat-tab-car-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.vcat-tab-car-seals {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.vcat-tab-car-seal {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f97316;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
}
.vcat-tab-car-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.vcat-tab-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

/* ---- Hub TYPE column (controller + shifter icons per lap) ---- */
.hub-type-cell {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  opacity: 0.75;
}
.hub-type-icon {
  display: inline-flex;
  align-items: center;
}
.hub-type-shifter {
  opacity: 0.65;
}
.type-col {
  white-space: nowrap;
  min-width: 36px;
}
