.container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.content {
  padding: 40px;
}

.section {
  margin-bottom: 36px;
}

.section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
}

.section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 0 0 0 0;
  font-weight: 600;
}

.quick-stats {
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #3498db;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.item-card h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.item-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cost {
  background: var(--secondary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
}

.priority-section {
  background: var(--bg);
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
}

.priority-item {
  background: var(--bg-card);
  margin: 12px 0;
  padding: 16px 20px;
  border-radius: 6px;
  border-left: 4px solid #95a5a6;
}

.priority-1 {
  border-left-color: #e74c3c;
}
.priority-2 {
  border-left-color: #f39c12;
}
.priority-3 {
  border-left-color: #f1c40f;
}
.priority-4 {
  border-left-color: #27ae60;
}
.priority-5 {
  border-left-color: #95a5a6;
}

.priority-item h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.priority-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.alert {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
}

.tip {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
}

ul {
  margin: 12px 0;
  padding-left: 20px;
}

li {
  margin: 4px 0;
  font-size: 14px;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.summary-box {
  background: var(--secondary);
  color: white;
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.summary-box h3 {
  color: white;
  margin-bottom: 12px;
}

#black-market-cash {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .content {
    padding: 24px;
  }

  .items-grid {
    grid-template-columns: 1fr;
  }
}
