/* ======================================================
   ATOMICBOT FAKE DASHBOARD DEMO
   File: /public_html/fakedash/fakedash.css
   ====================================================== */

:root {
  --fake-bg: #020713;
  --fake-panel: rgba(7, 18, 36, 0.92);
  --fake-panel-dark: rgba(2, 8, 18, 0.95);
  --fake-border: rgba(0, 200, 255, 0.18);
  --fake-border-bright: rgba(0, 200, 255, 0.38);
  --fake-blue: #00c8ff;
  --fake-blue-soft: #7ce7ff;
  --fake-white: #f5fbff;
  --fake-muted: #b7c5d8;
  --fake-red: #ff2c2c;
  --fake-yellow: #ffbd2e;
  --fake-green: #53ff8f;
  --fake-orange: #ff8b2b;
  --fake-radius: 14px;
  --fake-shadow: 0 0 26px rgba(0, 200, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--fake-bg);
  color: var(--fake-white);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow: auto;
}

/* ======================================================
   MAIN DASHBOARD LAYOUT
   ====================================================== */

.fake-dash {
  width: 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: 178px 1fr;
  background:
    linear-gradient(rgba(0, 200, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 45% 0%, rgba(0, 200, 255, 0.12), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(255, 139, 43, 0.08), transparent 24%),
    linear-gradient(180deg, #020713 0%, #01030a 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

/* ======================================================
   SIDEBAR
   ====================================================== */

.fake-sidebar {
  position: relative;
  padding: 14px 12px;
  background:
    linear-gradient(180deg, rgba(3, 13, 28, 0.98), rgba(1, 5, 13, 0.98));
  border-right: 1px solid var(--fake-border);
  box-shadow: inset -18px 0 28px rgba(0, 200, 255, 0.025);
  overflow: hidden;
}

.fake-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(0, 200, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(0, 200, 255, 0.08), transparent 36%);
  pointer-events: none;
}

.fake-logo,
.fake-nav {
  position: relative;
  z-index: 2;
}

.fake-logo {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 6px 4px 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.14);
}

.fake-logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--fake-blue-soft);
  font-size: 26px;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.18);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.14);
}

.fake-logo strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.6px;
}

.fake-logo span {
  display: block;
  margin-top: 5px;
  color: var(--fake-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fake-nav {
  display: grid;
  gap: 5px;
}

.fake-nav-link {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 9px 9px;
  background: transparent;
  color: var(--fake-muted);
  font-family: inherit;
  font-size: 12px;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.fake-nav-link:hover {
  color: #ffffff;
  background: rgba(0, 200, 255, 0.08);
  border-color: rgba(0, 200, 255, 0.12);
}

.fake-nav-link.active {
  color: var(--fake-blue);
  background: rgba(0, 200, 255, 0.13);
  border-color: rgba(0, 200, 255, 0.2);
  box-shadow: inset 0 0 18px rgba(0, 200, 255, 0.08);
}

/* ======================================================
   MAIN CONTENT
   ====================================================== */

.fake-main {
  min-width: 0;
  padding: 14px;
  overflow: hidden;
}

.fake-topbar {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: var(--fake-radius);
  background:
    linear-gradient(180deg, rgba(10, 25, 48, 0.94), rgba(5, 14, 29, 0.94));
  border: 1px solid var(--fake-border);
  box-shadow: var(--fake-shadow);
}

.fake-label {
  display: block;
  color: var(--fake-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fake-topbar h1 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.fake-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--fake-green);
  background: rgba(83, 255, 143, 0.08);
  border: 1px solid rgba(83, 255, 143, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.fake-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fake-green);
  box-shadow: 0 0 14px rgba(83, 255, 143, 0.9);
  animation: fakePulse 1.2s ease-in-out infinite;
}

/* ======================================================
   PANELS
   ====================================================== */

.fake-panel {
  display: none;
  animation: fakePanelIn 0.22s ease forwards;
}

.fake-panel.active {
  display: block;
}

.fake-grid {
  display: grid;
  gap: 10px;
}

.fake-stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fake-bottom-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
  margin-top: 10px;
}

.fake-section-heading {
  padding: 18px;
  margin-bottom: 12px;
  border-radius: var(--fake-radius);
  background:
    linear-gradient(180deg, rgba(10, 25, 48, 0.94), rgba(5, 14, 29, 0.94));
  border: 1px solid var(--fake-border);
  box-shadow: var(--fake-shadow);
}

.fake-section-heading h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 24px;
}

.fake-section-heading p {
  margin: 0;
  color: var(--fake-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ======================================================
   STAT CARDS
   ====================================================== */

.fake-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 13px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(12, 28, 53, 0.95), rgba(6, 16, 32, 0.95));
  border: 1px solid var(--fake-border);
  box-shadow: inset 0 0 18px rgba(0, 200, 255, 0.035);
}

.fake-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(0, 200, 255, 0.1) 45%, transparent 72%);
  transform: translateX(-120%);
  animation: fakeSweep 6s ease-in-out infinite;
  pointer-events: none;
}

.fake-stat-card:nth-child(2)::before {
  animation-delay: 0.6s;
}

.fake-stat-card:nth-child(3)::before {
  animation-delay: 1.2s;
}

.fake-stat-card:nth-child(4)::before {
  animation-delay: 1.8s;
}

.fake-stat-card span,
.fake-stat-card strong,
.fake-stat-card small {
  position: relative;
  z-index: 2;
}

.fake-stat-card span {
  display: block;
  color: var(--fake-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.fake-stat-card strong {
  display: block;
  margin-top: 9px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.fake-stat-card small {
  display: block;
  margin-top: 8px;
  color: rgba(124, 231, 255, 0.8);
  font-size: 11px;
}

/* ======================================================
   ACTION BUTTONS
   ====================================================== */

.fake-action-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.fake-action-row button {
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 10px;
  padding: 10px 8px;
  background: rgba(0, 200, 255, 0.08);
  color: #ffffff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.fake-action-row button:hover {
  transform: translateY(-1px);
  background: rgba(0, 200, 255, 0.14);
  border-color: rgba(0, 200, 255, 0.36);
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.12);
}

/* ======================================================
   GENERIC CARDS / LISTS
   ====================================================== */

.fake-card {
  min-height: 224px;
  padding: 13px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(12, 28, 53, 0.95), rgba(6, 16, 32, 0.95));
  border: 1px solid var(--fake-border);
  box-shadow: inset 0 0 18px rgba(0, 200, 255, 0.035);
}

.fake-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.fake-list-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  color: var(--fake-muted);
  font-size: 12px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.07);
}

.fake-list-row:last-child {
  border-bottom: 0;
}

.fake-list-row strong {
  color: #ffffff;
  font-weight: 700;
}

.fake-list-row small {
  color: var(--fake-muted);
}

/* ======================================================
   MAP WIDGET
   ====================================================== */

.fake-map-card {
  overflow: hidden;
}

.fake-map {
  position: relative;
  min-height: 186px;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 255, 0.12);
  background:
    linear-gradient(rgba(0, 200, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 60% 35%, rgba(0, 200, 255, 0.17), transparent 24%),
    radial-gradient(circle at 35% 70%, rgba(255, 139, 43, 0.16), transparent 26%),
    rgba(0, 0, 0, 0.25);
  background-size: 25px 25px, 25px 25px, auto, auto;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 16px currentColor;
  animation: fakeMapDot 1.8s ease-in-out infinite;
}

.map-dot.blue {
  left: 30%;
  top: 35%;
  color: var(--fake-blue);
  background: var(--fake-blue);
}

.map-dot.red {
  right: 24%;
  top: 42%;
  color: var(--fake-red);
  background: var(--fake-red);
  animation-delay: 0.3s;
}

.map-dot.green {
  left: 48%;
  bottom: 27%;
  color: var(--fake-green);
  background: var(--fake-green);
  animation-delay: 0.6s;
}

.map-dot.yellow {
  right: 38%;
  bottom: 18%;
  color: var(--fake-yellow);
  background: var(--fake-yellow);
  animation-delay: 0.9s;
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 255, 0.26);
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.12);
}

.map-ring.one {
  width: 72px;
  height: 72px;
  left: 21%;
  top: 22%;
}

.map-ring.two {
  width: 96px;
  height: 96px;
  right: 12%;
  top: 24%;
  border-color: rgba(255, 44, 44, 0.3);
  box-shadow: 0 0 18px rgba(255, 44, 44, 0.12);
}

.map-tag {
  position: absolute;
  padding: 4px 7px;
  border-radius: 7px;
  background: rgba(2, 8, 18, 0.84);
  border: 1px solid rgba(0, 200, 255, 0.16);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.map-tag.tag-one {
  left: 12%;
  top: 58%;
}

.map-tag.tag-two {
  right: 10%;
  top: 62%;
}

.map-tag.tag-three {
  left: 44%;
  bottom: 8%;
}

/* ======================================================
   CONSOLE
   ====================================================== */

.fake-console-card {
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.96), rgba(0, 0, 0, 0.84));
}

.fake-console-line {
  color: rgba(245, 251, 255, 0.9);
  font-family: Consolas, Monaco, monospace;
  font-size: 11px;
  padding: 4px 0;
}

.fake-console-line span {
  color: var(--fake-blue);
}

.fake-console-line.muted {
  color: rgba(183, 197, 216, 0.7);
}

.fake-console-line.success {
  color: var(--fake-green);
}

.fake-console-input {
  margin-top: 11px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(0, 200, 255, 0.06);
  border: 1px solid rgba(0, 200, 255, 0.12);
  color: rgba(183, 197, 216, 0.7);
  font-family: Consolas, Monaco, monospace;
  font-size: 11px;
}

/* ======================================================
   SERVER CARDS
   ====================================================== */

.fake-server-list {
  display: grid;
  gap: 10px;
}

.fake-server-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(12, 28, 53, 0.95), rgba(6, 16, 32, 0.95));
  border: 1px solid var(--fake-border);
}

.fake-server-card strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
}

.fake-server-card span {
  display: block;
  margin-top: 5px;
  color: var(--fake-muted);
  font-size: 12px;
}

.online {
  color: var(--fake-green) !important;
}

/* ======================================================
   TABLE
   ====================================================== */

.fake-table {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--fake-border);
  background: rgba(7, 18, 36, 0.82);
}

.fake-table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr 0.8fr;
  gap: 10px;
  padding: 13px 14px;
  color: var(--fake-muted);
  font-size: 12px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.09);
}

.fake-table-row:last-child {
  border-bottom: 0;
}

.fake-table-row.head {
  color: #ffffff;
  background: rgba(0, 200, 255, 0.08);
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* ======================================================
   ALERTS
   ====================================================== */

.fake-alert-stack {
  display: grid;
  gap: 10px;
}

.fake-alert {
  position: relative;
  padding: 15px 15px 15px 20px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(12, 28, 53, 0.95), rgba(6, 16, 32, 0.95));
  border: 1px solid var(--fake-border);
  overflow: hidden;
}

.fake-alert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  border-radius: 99px;
  background: var(--fake-blue);
}

.fake-alert.red::before {
  background: var(--fake-red);
}

.fake-alert.yellow::before {
  background: var(--fake-yellow);
}

.fake-alert.green::before {
  background: var(--fake-green);
}

.fake-alert strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.fake-alert span {
  display: block;
  margin-top: 5px;
  color: var(--fake-muted);
  font-size: 12px;
}

/* ======================================================
   SHOP / SETTINGS / LOGS
   ====================================================== */

.fake-shop-grid,
.fake-settings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fake-shop-item,
.fake-setting {
  padding: 15px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(12, 28, 53, 0.95), rgba(6, 16, 32, 0.95));
  border: 1px solid var(--fake-border);
}

.fake-shop-item strong,
.fake-setting span {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.fake-shop-item span,
.fake-setting strong {
  display: block;
  margin-top: 7px;
  color: var(--fake-blue-soft);
  font-size: 12px;
}

.fake-log-box {
  padding: 14px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.96), rgba(0, 0, 0, 0.84));
  border: 1px solid var(--fake-border);
  font-family: Consolas, Monaco, monospace;
  font-size: 12px;
  color: rgba(245, 251, 255, 0.86);
}

.fake-log-box div {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 200, 255, 0.07);
}

.fake-log-box div:last-child {
  border-bottom: 0;
}

/* ======================================================
   ANIMATIONS
   ====================================================== */

@keyframes fakePulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes fakePanelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fakeSweep {
  0%, 58% {
    opacity: 0;
    transform: translateX(-120%);
  }

  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes fakeMapDot {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 860px) {
  body {
    overflow: auto;
  }

  .fake-dash {
    min-height: 560px;
    grid-template-columns: 1fr;
  }

  .fake-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--fake-border);
  }

  .fake-logo {
    grid-template-columns: 36px 1fr;
    padding-bottom: 10px;
  }

  .fake-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .fake-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .fake-nav-link {
    text-align: center;
    font-size: 11px;
  }

  .fake-main {
    overflow: visible;
  }

  .fake-stat-grid,
  .fake-bottom-grid,
  .fake-shop-grid,
  .fake-settings-grid {
    grid-template-columns: 1fr;
  }

  .fake-action-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .fake-table-row {
    grid-template-columns: 1fr 0.8fr;
  }

  .fake-table-row span:nth-child(3),
  .fake-table-row span:nth-child(4) {
    display: none;
  }
}

@media (max-width: 520px) {
  .fake-main {
    padding: 10px;
  }

  .fake-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .fake-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .fake-action-row {
    grid-template-columns: 1fr;
  }

  .fake-section-heading h2 {
    font-size: 20px;
  }
}