/* ===== CONTADOR MINIMALISTA NO TOPO ===== */
#top-countdown-container {
  background: #d81014;
  color: white;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#top-countdown-container span {
  font-size: 18px;
  font-weight: 900;
  margin: 0 6px;
}

/* ===== NOTIFICAÇÕES DE COMPRA ===== */
#notifications-container {
  position: fixed;
  top: 20%;
  right: 16px;
  z-index: 9998;
  pointer-events: none;
}

.notification {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  font-size: 12px;
  color: #333;
  width: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-icon {
  width: 32px;
  height: 32px;
  background: #f8f8f8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon img {
  width: 20px;
  height: 20px;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification .player {
  color: #111;
  font-weight: 600;
  font-size: 11px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.notification .details {
  color: #666;
  font-size: 11px;
  margin-top: 2px;
  white-space: nowrap;
}

.notification .value {
  color: #e67e22;
  font-weight: 600;
}

.notification-time {
  font-size: 9px;
  color: #999;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.notification-time i {
  font-size: 8px;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 96%; }
}

@keyframes pulse-urgency {
  0%, 100% { background: #d81014; }
  50% { background: #ff3333; }
}

@media (max-width: 768px) {
  #notifications-container {
    right: 10px;
    top: 20%;
  }
  
  .notification {
    width: 220px;
    padding: 8px 12px;
  }

  .notification-icon {
    width: 28px;
    height: 28px;
  }

  .notification-icon img {
    width: 16px;
    height: 16px;
  }

  .notification .player {
    max-width: 130px;
  }
}

/* ===== ESTILOS INLINE EXTRAÍDOS ===== */
.avatar-img {
  border-radius: 50%;
}

.cupons-section {
  margin-top: 20px;
}

.cupons-label {
  margin: 0 0 8px 0;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cupons-progress-container {
  width: 100%;
  height: 12px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}

.cupons-progress-bar {
  height: 100%;
  background: #d81014;
  width: 96%;
  animation: progressFill 0.8s ease-out;
}

.cupons-text {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

.svg-icon-inline {
  vertical-align: -2px;
  margin-right: 4px;
}

.svg-icon-info {
  vertical-align: -2px;
}

.svg-icon-help {
  margin-left: 4px;
}

.btn-login-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 44px;
  background-color: rgb(216,16,20);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  line-height: 1;
  border-radius: .375rem;
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  text-decoration: none;
  cursor: pointer;
}

.login-note {
  margin-top: 22px;
}

.login-note h3 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #1f2937;
}

.box-diamantes {
  margin-top: 18px;
}

.box-diamantes .content span {
  font-weight: 600;
  color: #374151;
}

.box-diamantes .content h3 {
  margin-top: 6px;
}

.footer {
  margin-top: 28px;
}

.content-footer {
  padding: 18px 0;
}

.notification-cupom-icon {
  background: #fff0f0;
}

.notification-cupom-player {
  color: #d81014;
}

.notification-cupom-value {
  color: #d81014;
}
