/* —— BF6 layout —— */
.bf6-wrap { display: grid; gap: 12px; }
.bf6-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 820px){
  .bf6-grid { grid-template-columns: 1fr 1fr; }
  .bf6-stats { grid-column: 1 / -1; }
}

.bf6-card {
  background: #1f2530;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
  padding: 12px;
}

.bf6-header { display: flex; align-items: center; gap: 12px; }
.bf6-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.bf6-identity { line-height: 1.1; }
.bf6-name { font-weight: 700; color: #fff; }
.bf6-tag { font-size: 12px; color: #cbd5e1; opacity: .9; }

.bf6-title {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 6px;
  text-align: center;
}
.bf6-sub { text-align: center; color: #e5e7eb; margin-bottom: 8px; }

.bf6-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.bf6-stats-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px){
  .bf6-stats-list { grid-template-columns: 1fr 1fr; }
}

.bf6-stat-item {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.03);
  padding: 8px 10px;
  border-radius: 8px;
}
.bf6-stat-icon { width: 16px; height: 16px; object-fit: contain; }
.bf6-stat-name { color: #e5e7eb; font-size: 13px; }
.bf6-stat-value { color: #fef9c3; font-weight: 700; font-size: 13px; }

/* — Cards de armas — */
.weapon-card {
  background: #2b2b2b;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 10px auto;
  max-width: 320px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  text-align: center;
  transition: transform 0.2s ease;
}
.weapon-card:hover { transform: translateY(-2px); }

.alert-yellow { border-left: 5px solid #FFD700; }
.alert-orange { border-left: 5px solid #FF8C00; }
.alert-red    { border-left: 5px solid #FF4444; }

.weapon-card h4 { margin-bottom: 8px; color: #f0f0f0; }
.weapon-card p { margin: 3px 0; font-size: 14px; }

/* — Outros nomes — */
.outros-nomes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: auto;
}
.outros-nomes-item {
  flex: 1 1 calc(33.33% - 10px);
  text-align: center;
  min-width: 150px;
  color: white;
}
.adm-version {
  font-weight: bold;
  color: #ffcc00;
  font-size: 1.2em;
  text-transform: uppercase;
}

/* Responsividade */
@media screen and (max-width: 950px) {
  iframe[title="perfil"] { display: none; }
}

/* Botões principais */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin: 5px;
  transition: transform 0.2s ease, background 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-danger { background: #e53935; color: #fff; }
.btn-danger:hover { background: #c62828; }

.btn-success { background: #10B981; color: #fff; }
.btn-success:hover { background: #0d946b; }

.btn-primary { background: #3b82f6; color: #fff; margin-top: 15px; }
.btn-primary:hover { background: #2563eb; }

/* Card ID */
.info-card {
  background: #2b2b2b;
  padding: 8px 15px;
  border-radius: 6px;
  margin: 15px auto;
  max-width: 320px;
  text-align: left;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Iframe */
.stats-widget {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin: 15px auto;
  display: block;
}

/* Legendas */
.legend p {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 5px;
  margin: 4px auto;
  width: fit-content;
  font-size: 13px;
  background: rgba(255,255,255,0.05);
}
.legend .yellow { color: #FFD700; }
.legend .orange { color: #FF8C00; }
.legend .red { color: #FF4444; }

/* Botões secundários */
.secondary-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 15px;
}
.secondary-buttons button {
  background: #3a3a3a;
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  transition: background 0.2s;
}
.secondary-buttons button:hover { background: #555; }

/* Modal amigo */
#modal-amigo {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#modal-amigo-content { color: white; text-align: center; font-family: sans-serif; }
#modal-amigo-content img {
  width: 100px;
  animation: pulse 2s infinite ease-in-out;
}
#modal-amigo-texto { font-size: 18px; margin-top: 20px; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}
