/* reward-progress.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-size: cover;
  color: white;
  padding: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.fondowallet {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url("/css/fondowallet.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.rewards-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.609);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.15);
}

.reward-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 4px rgba(255,140,0,0.6));
}

.reward-title {
  font-size: 2rem;
  font-weight: bold;
  color: orange;
  margin-bottom: 4px;
}

.reward-subtitle {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 20px;
}

.progress-card {
  background: rgba(0, 0, 0, 0.842);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.85rem;  /* texto general más pequeño */
  text-align: left;
  box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.451);
}

.progress-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.progress-label {
  color: white;
}

.pointss {
  background: rgba(255, 165, 0, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  color: orange;
  font-size: 0.8rem;
  font-weight: bold;
}
.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: orange;
  transition: width 0.5s ease;
}

.progress-hint {
  font-size: 0.75rem;
  color: #ccc;
  text-align: left;
}

.nav-btn {
  text-decoration: none;
}
.nav-btn:visited,
.nav-btn:hover,
.nav-btn:active {
  text-decoration: none;
}