
body {
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 10px 20px;
  border-bottom: 2px solid #b89000;
}
header .profile {
  display: flex;
  align-items: center;
}
header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.btn {
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.btn.gold {
  background-color: #b89000;
  color: #fff;
}
.btn.dark {
  background-color: #333;
  color: #fff;
}
main {
  padding: 20px;
}
section.funnel {
  background-color: #121212;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.metric {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.metric span {
  width: 120px;
}
.bar {
  flex: 1;
  background-color: #222;
  height: 20px;
  border-radius: 10px;
  margin-right: 10px;
  overflow: hidden;
}
.bar div {
  height: 100%;
  background-color: #b89000;
}
.value {
  width: 80px;
  text-align: right;
}
.charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.card {
  background-color: #121212;
  padding: 15px;
  border-radius: 10px;
}
.map #map {
  height: 300px;
  border-radius: 10px;
}
