/* Premium Gamification CSS for KILL BUSYness Portal */

.gamification-container {
  display: grid;
  gap: 24px;
}

/* Trophy Case Grid */
.trophy-case {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.trophy-item {
  background: linear-gradient(145deg, #ffffff, #f0f4f8);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.trophy-item.unlocked {
  background: linear-gradient(145deg, #ffffff, #fafaf8);
  border: 1px solid #0E9C74;
  box-shadow: 0 4px 12px rgba(14,156,116,0.1);
}

.trophy-item.unlocked:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(14,156,116,0.15);
}

.trophy-item.locked {
  opacity: 0.6;
  filter: grayscale(100%);
}

.trophy-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: inline-block;
}

.trophy-item.unlocked .trophy-icon {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.trophy-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.trophy-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}

/* Special Master Badge Styling */
.trophy-item.master-badge {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid #D9A441;
  color: #fff;
}

.trophy-item.master-badge.locked {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.master-badge .trophy-name {
  color: #D9A441;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.master-badge.locked .trophy-name {
  color: #64748b;
}

/* Visual Level Map */
.level-map {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.level-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.level-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.level-progress-container {
  position: relative;
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.level-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #0E9C74, #22c55e);
  border-radius: 6px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* VIP Store */
.vip-store {
  display: grid;
  gap: 16px;
}

.store-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.store-card:not(.locked):hover {
  border-color: #D9A441;
  box-shadow: 0 4px 12px rgba(217,164,65,0.15);
}

.store-card.locked {
  background: #f8fafc;
  opacity: 0.7;
}

.store-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.store-price {
  font-family: var(--mono);
  font-weight: 700;
  color: #D9A441;
  display: flex;
  align-items: center;
  gap: 12px;
}
