/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page Body */
body {
  height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Grid */
.fst-container {
  position: relative;
  width: 90vw;
  height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* Quadrant Base */
.quadrant {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

/* Content Area */
.quadrant-content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Labels */
.label {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-align: center;
  pointer-events: none;
}

/* Individual Quadrants */
.fst-trading-post { background-color: darkblue; }
.investor-dashboard { background-color: darkgreen; }
.nft-platform { background-color: purple; }
.social-hub { background-color: goldenrod; }

/* Center Circle */
.airdrop-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at top, lightskyblue, darkblue);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 0 25px black;
}

/* ================= PRICE BOX ================= */

.price-frame {
  width: 100%;
  height: 260px;
  border: none;
  background: transparent;
}

/* Price Box Styling */
.price-box {
  background: radial-gradient(circle at top, #0f172a, #020617);
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  width: 100%;
  color: #e5e7eb;
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #1e293b;
}

.row:last-child { border-bottom: none; }

.label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.value {
  font-size: 0.9rem;
}

.highlight .value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #22c55e;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  word-break: break-all;
}
