:root {

  --bg: #ffffff;
  --text: #111111;

  --card-bg: #f4f4f4;

  --border: #dcdcdc;

  --accent: #2563eb;
}

[data-theme="dark"] {

  --bg: #0f1117;

  --text: #e5e5e5;

  --card-bg: #151823;

  --border: #2a2f3a;

  --accent: #9cc9ff;
}


.flavor-map {
  position: relative;
  width: 100%;
  height: 400px;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-top: 20px;
  background: #fff;
}

.axis.horizontal {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #ccc;
}

.axis.vertical {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1px;
  background: #ccc;
}

.label {
  position: absolute;
  font-size: 12px;
  color: #666;
}

.label.top { top: 5px; left: 50%; transform: translateX(-50%); }
.label.bottom { bottom: 5px; left: 50%; transform: translateX(-50%); }
.label.left { left: 5px; top: 50%; transform: translateY(-50%); }
.label.right { right: 5px; top: 50%; transform: translateY(-50%); }

.point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.point:hover {
  background: red;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;

  background: var(--bg);

  color: var(--text);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #151823;
  border-bottom: 1px solid #2a2f3a;
}

.nav {
  display: flex;
  gap: 1rem;
}


.nav a {
  color: var(--accent);
}

.container {
  padding: 2rem;
}


.card {

  background: var(--card-bg);

  border: 1px solid var(--border);

  padding: 1rem;

  border-radius: 10px;

  margin-bottom: 1rem;
}


.side-note {
  background: #151823;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #2a2f3a;
  margin-bottom: 1rem;
}

.highlight-section {
  border-left: 4px solid #9cc9ff;
}

.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #2a2f3a;
  margin-top: 2rem;
  opacity: 0.7;
}

.badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.badge {
  background: #1f2633;
  border: 1px solid #2a2f3a;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 12px;
  color: #9cc9ff;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: #151823;
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  padding: 1rem;
}

.metric-title {
  font-size: 14px;
  opacity: 0.7;
}

.metric-value {
  font-size: 32px;
  font-weight: bold;
  margin-top: 0.5rem;
  color: #9cc9ff;
}

.architecture-diagram {
  text-align: center;
  margin-top: 1rem;
}

.architecture-diagram img {
  max-width: 900px;
  width: 100%;
  height: auto;

  border-radius: 12px;

  border: 1px solid var(--border);

  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}


