/* ============================================================================
   TCG ICON SYSTEM — FINAL (LOGO DE AVALIAÇÃO EM DESTAQUE)
   ============================================================================ */

:root {
  --tcg-primary: #006633;
  --tcg-text: #1a1a1a;
  --tcg-muted: #6b7280;
}

/* ============================================================================
   BASE
   ============================================================================ */

.tcg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  isolation: isolate;
}

.tcg-icon svg[data-tcg-icon] {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================================
   LINKS
   ============================================================================ */

.tcg-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--tcg-text);
}

.tcg-icon-link:hover {
  opacity: 0.95;
}

.tcg-icon-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--tcg-muted);
}

/* ============================================================================
   CONTEXTOS
   ============================================================================ */

/* ---------- PLATAFORMAS ---------- */
.tcg-media-platforms .tcg-icon {
  width: 24px;
  height: 24px;
}

/* ---------- RATING / AVALIAÇÃO ---------- */
.tcg-media-rating .tcg-icon {
  width: auto;
  height: 42px;              /* ⬅ LOGO MAIOR, VISÍVEL */
  margin-bottom: 6px;
}

.tcg-media-rating .tcg-icon svg {
  width: auto;
  height: 100%;
  max-width: 120px;          /* ⬅ permite IGN respirar */
}

.tcg-media-rating .tcg-icon-label {
  display: none;
}

/* ============================================================================
   DARK MODE
   ============================================================================ */

[data-theme='dark'] .tcg-icon-link,
.rb-dark-mode .tcg-icon-link {
  color: #f1f5f9;
}

[data-theme='dark'] .tcg-icon-label,
.rb-dark-mode .tcg-icon-label {
  color: #94a3b8;
}

/* ============================================================================
   RESPONSIVO
   ============================================================================ */

@media (max-width: 768px) {

  .tcg-icon-label {
    font-size: 12px;
  }

  .tcg-media-platforms .tcg-icon {
    width: 20px;
    height: 20px;
  }

  .tcg-media-rating .tcg-icon {
    height: 34px;           /* proporcional no mobile */
  }

  .tcg-media-rating .tcg-icon svg {
    max-width: 100px;
  }
}
