.dashboard-fullscreen {
  position: fixed;
  top: 1.6rem;
  right: 1.8rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 16, 32, 0.45);
  color: #8faaff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(10px);
  z-index: 30;
}

.dashboard-fullscreen::before {
  content: "⤢";
  font-size: 1rem;
  line-height: 1;
}

.dashboard-fullscreen:hover {
  opacity: 0.9;
  transform: scale(1.08);
}

body.is-fullscreen .dashboard-fullscreen {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.32);
}

body.is-fullscreen .dashboard-fullscreen::before {
  content: "⤡";
}

.sparkline {
  margin-top: 1.7rem;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.02));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

:root {
  color-scheme: dark;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(15, 45, 90, 0.9), #020611);
  color: #f5f8ff;
  overflow-x: hidden;
}

.overlay-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(0, 255, 189, 0.12), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(0, 132, 255, 0.15), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255, 0, 128, 0.08), transparent 50%);
  z-index: -1;
}

.landing,
.admin,
.dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 5vw;
  gap: 3rem;
  text-align: center;
}

.admin,
.dashboard {
  text-align: left;
}

.admin {
  align-items: stretch;
  padding: 2rem 2.5rem;
  min-height: 100vh;
  gap: 2rem;
}

.dashboard {
  align-items: stretch;
  padding: 2rem 2.5rem 9rem;
  position: relative;
  overflow: hidden;
}

.dashboard::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 255, 200, 0.12), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255, 110, 160, 0.1), transparent 55%),
    repeating-linear-gradient(120deg, rgba(0, 140, 255, 0.12) 0, rgba(0, 140, 255, 0.12) 18px, rgba(0, 0, 0, 0) 18px, rgba(0, 0, 0, 0) 42px);
  opacity: 0.35;
  animation: dashboardWave 18s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.landing__logo,
.header-logo {
  width: clamp(120px, 18vw, 200px);
  filter: drop-shadow(0 0 35px rgba(0, 255, 200, 0.35));
}

.landing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button--primary {
  background: linear-gradient(120deg, #01f1a1, #00bbff);
  color: #001221;
}

.button--secondary {
  background: linear-gradient(120deg, #ff5f9f, #ffaf42);
  color: #130014;
}

.button:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.25);
}

.landing__footer {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  width: min(1200px, 100%);
  justify-content: flex-start;
}

.market-grid {
  width: 100%;
}

.admin__main {
  width: 100%;
  display: flex;
  flex: 1;
  position: relative;
}

.admin-reset {
  position: fixed;
  top: 1.8rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 20, 42, 0.55);
  color: #c6d9ff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(12px);
  z-index: 20;
}

.admin-reset:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  background: linear-gradient(120deg, rgba(0, 255, 200, 0.35), rgba(0, 120, 255, 0.35));
}

.admin-panel {
  text-align: left;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.admin-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dashboard__main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: stretch;
  width: 100%;
}

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

.market-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.market-card .card-middle {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.trend-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.market-card.trend-up .trend-icon::after,
.market-card.trend-down .trend-icon::after,
.market-card.trend-flat .trend-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: translateY(1px);
}

.market-card.trend-up .trend-icon::after {
  border-bottom: 14px solid #00ffbf;
}

.market-card.trend-down .trend-icon::after {
  border-top: 14px solid #ff6b91;
  transform: translateY(-1px);
}

.market-card.trend-flat .trend-icon::after {
  border-top: 4px solid #9bb6ff;
  transform: translateY(0);
}

.flash-up {
  animation: flashUp 900ms ease;
}

.flash-down {
  animation: flashDown 900ms ease;
}

@keyframes flashUp {
  0% {
    box-shadow: 0 0 0 rgba(0, 255, 170, 0);
  }
  35% {
    box-shadow: 0 0 55px rgba(0, 255, 170, 0.4);
  }
  100% {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }
}

@keyframes flashDown {
  0% {
    box-shadow: 0 0 0 rgba(255, 90, 120, 0);
  }
  35% {
    box-shadow: 0 0 55px rgba(255, 90, 120, 0.4);
  }
  100% {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }
}

.market-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 108px;
  padding: 0 5.5rem;
  background: radial-gradient(circle at 10% 50%, rgba(0, 255, 200, 0.12), transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(255, 90, 160, 0.1), transparent 60%),
    linear-gradient(90deg, rgba(0, 24, 52, 0.96), rgba(0, 0, 0, 0.82));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 15;
  backdrop-filter: blur(20px);
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: tickerMove 52s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 1.35rem;
  white-space: nowrap;
}

.ticker-name {
  opacity: 0.8;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
}

.ticker-price {
  font-size: 1.55rem;
}

.ticker-change {
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.ticker-item::before {
  content: "";
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  border-radius: 999px;
  margin-right: 0.6rem;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.ticker-item.trend-up .ticker-change::before,
.ticker-item.trend-down .ticker-change::before,
.ticker-item.trend-flat .ticker-change::before {
  content: attr(data-arrow);
  font-size: 0.85rem;
}

.ticker-item.trend-up .ticker-change::before {
  content: "▲";
  color: #00ffbf;
}

.ticker-item.trend-down .ticker-change::before {
  content: "▼";
  color: #ff6b91;
}

.ticker-item.trend-flat .ticker-change::before {
  content: "■";
  color: #9bb6ff;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.market-alert {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 30%, rgba(0, 255, 200, 0.08), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 110, 160, 0.08), transparent 55%),
    rgba(1, 5, 12, 0.86);
  backdrop-filter: blur(22px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.market-alert--active {
  animation: alertOverlayPulse 1.8s ease-in-out infinite;
}

.market-alert--visible {
  opacity: 1;
  pointer-events: auto;
}

.market-alert--hidden {
  opacity: 0;
  pointer-events: none;
}

.market-alert__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 3.4rem 4rem;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(3, 28, 60, 0.95), rgba(9, 5, 32, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 70px 160px rgba(0, 0, 0, 0.65), inset 0 0 120px rgba(0, 255, 200, 0.08);
  text-align: left;
  animation: alertPop 360ms cubic-bezier(0.16, 1, 0.3, 1);
  width: min(1200px, 88vw);
  position: relative;
  overflow: hidden;
}

.market-alert__logo {
  width: clamp(110px, 14vw, 160px);
  filter: drop-shadow(0 0 55px rgba(0, 255, 200, 0.45));
}

.market-alert__label {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: 0.5em;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.6rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.market-alert__label::before {
  content: "⚡";
  font-size: clamp(2.2rem, 4vw, 3rem);
  animation: alertFlash 1.2s ease-in-out infinite;
}

.market-alert__label::after {
  content: "Borsa Alarmı";
  font-size: inherit;
  letter-spacing: inherit;
}

.market-alert__title {
  margin: 0.65rem 0;
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.market-alert__change {
  margin: 1rem 0 0;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  opacity: 0.92;
  font-weight: 600;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.alert-direction {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #f5f8ff;
}

.alert-divider {
  width: clamp(60px, 12vw, 140px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  opacity: 0.5;
}

.alert-price-label {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 0.32em;
  opacity: 0.75;
}

.alert-price {
  font-size: clamp(3.6rem, 7.4vw, 6.2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f5f8ff;
  text-shadow: 0 0 45px currentColor, 0 12px 45px rgba(0, 0, 0, 0.55);
}

.market-alert__icon {
  font-size: clamp(6rem, 11vw, 9.5rem);
  font-weight: 700;
  text-shadow: 0 0 45px currentColor;
}

.market-alert--up .market-alert__icon {
  color: #00ffbf;
  animation: bounceUp 1.2s ease infinite;
}

.market-alert--up .alert-price,
.market-alert--up .alert-direction {
  color: #00ffbf;
}

.market-alert--up .market-alert__content {
  box-shadow: 0 70px 160px rgba(0, 0, 0, 0.65), inset 0 0 160px rgba(0, 255, 200, 0.25);
}

.market-alert--up .market-alert__content::after {
  filter: hue-rotate(-35deg);
}

.market-alert--down .market-alert__content {
  box-shadow: 0 70px 160px rgba(0, 0, 0, 0.65), inset 0 0 160px rgba(255, 110, 160, 0.25);
}

.market-alert--down .market-alert__content::after {
  filter: hue-rotate(20deg);
}

.market-alert--down .alert-price,
.market-alert--down .alert-direction {
  color: #ff6b91;
}

.market-alert--down .market-alert__icon {
  color: #ff6b91;
  animation: bounceDown 1.2s ease infinite;
}

.market-alert__text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.market-alert__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 190, 0.18), rgba(0, 0, 0, 0));
  opacity: 0;
  animation: alertHighlight 2.4s ease-in-out infinite;
}

.market-alert--down .market-alert__content::before {
  background: linear-gradient(135deg, rgba(255, 110, 160, 0.2), rgba(0, 0, 0, 0));
}

.market-alert__content::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0)) ,
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 12px,
      rgba(255, 255, 255, 0) 12px,
      rgba(255, 255, 255, 0) 30px
    );
  opacity: 0.38;
  animation: alertStripe 4s linear infinite;
  mix-blend-mode: overlay;
}

@keyframes alertPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes alertHighlight {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes alertOverlayPulse {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.85;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes dashboardWave {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 40px 60px, -60px 40px, 120px 80px;
  }
  100% {
    background-position: 0 0, 0 0, 240px 160px;
  }
}

@keyframes alertFlash {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.92);
  }
  45% {
    opacity: 1;
    transform: scale(1.08);
  }
  50% {
    opacity: 0.45;
    transform: scale(1);
  }
  55% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes alertGlow {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes alertStripe {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 240px 120px;
  }
}

@keyframes bounceUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.admin-card,
.market-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(5, 14, 28, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.admin-card::before,
.market-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(0, 255, 200, 0.28),
    rgba(0, 122, 255, 0.25),
    rgba(255, 0, 128, 0.25)
  );
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: -1;
}

.admin-card:hover::before,
.market-card:hover::before {
  opacity: 0.6;
}

.admin-card:hover,
.market-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

.admin-card header,
.market-card .card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.admin-card h3,
.market-card h3 {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-card .price,
.market-card .price {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
}

.change-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.change-info .change {
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.change-info .previous {
  font-size: 0.8rem;
  opacity: 0.65;
}

.trend-up {
  color: #00ffc8;
}

.trend-down {
  color: #ff4d88;
}

.trend-flat {
  color: #9bb6ff;
}

.market-card.trend-up {
  background: linear-gradient(160deg, rgba(0, 70, 40, 0.92), rgba(0, 255, 200, 0.18));
  border-color: rgba(0, 255, 200, 0.5);
  box-shadow: 0 18px 55px rgba(0, 90, 70, 0.4), inset 0 0 25px rgba(0, 255, 210, 0.2);
}

.market-card.trend-down {
  background: linear-gradient(160deg, rgba(80, 0, 40, 0.92), rgba(255, 77, 136, 0.18));
  border-color: rgba(255, 77, 136, 0.5);
  box-shadow: 0 18px 55px rgba(110, 0, 55, 0.4), inset 0 0 25px rgba(255, 77, 136, 0.2);
}

.market-card.trend-flat {
  background: linear-gradient(160deg, rgba(20, 30, 70, 0.95), rgba(144, 185, 255, 0.12));
  border-color: rgba(144, 185, 255, 0.32);
  box-shadow: 0 18px 55px rgba(20, 30, 70, 0.35), inset 0 0 25px rgba(144, 185, 255, 0.14);
}

.admin-card.trend-up,
.admin-card.trend-down,
.admin-card.trend-flat,
.market-card.trend-up,
.market-card.trend-down,
.market-card.trend-flat {
  color: #f5f8ff;
}

.admin-card .change.trend-up,
.market-card .change.trend-up,
.ticker-item.trend-up .ticker-change {
  color: #00ffc8;
}

.admin-card .change.trend-down,
.market-card .change.trend-down,
.ticker-item.trend-down .ticker-change {
  color: #ff4d88;
}

.admin-card .change.trend-flat,
.market-card .change.trend-flat,
.ticker-item.trend-flat .ticker-change {
  color: #9bb6ff;
}

.admin-card.trend-up::before,
.market-card.trend-up::before {
  background: linear-gradient(140deg, rgba(0, 255, 200, 0.45), rgba(0, 122, 255, 0.28));
}

.admin-card.trend-down::before,
.market-card.trend-down::before {
  background: linear-gradient(140deg, rgba(255, 77, 136, 0.45), rgba(255, 144, 0, 0.28));
}

.admin-card.trend-flat::before,
.market-card.trend-flat::before {
  background: linear-gradient(140deg, rgba(144, 185, 255, 0.35), rgba(88, 132, 255, 0.2));
}

.controls {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.btn {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(9, 28, 52, 0.9);
  color: #e9f6ff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.increase {
  background: linear-gradient(120deg, rgba(0, 255, 184, 0.25), rgba(0, 126, 255, 0.25));
}

.decrease {
  background: linear-gradient(120deg, rgba(255, 91, 143, 0.25), rgba(255, 160, 66, 0.25));
}

.pulse-up {
  animation: pulseUp 640ms ease;
}

.pulse-down {
  animation: pulseDown 640ms ease;
}

@keyframes pulseUp {
  0% {
    box-shadow: 0 0 0 rgba(0, 255, 200, 0);
  }
  55% {
    box-shadow: 0 0 35px rgba(0, 255, 200, 0.6);
  }
  100% {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }
}

@keyframes pulseDown {
  0% {
    box-shadow: 0 0 0 rgba(255, 90, 120, 0);
  }
  55% {
    box-shadow: 0 0 35px rgba(255, 90, 120, 0.6);
  }
  100% {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }
}

.market-card {
  min-height: 0;
}

.market-card .card-top {
  flex-shrink: 0;
}

.market-card .card-middle {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .admin-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .dashboard__header {
    width: min(1200px, 100%);
  }
}

