/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  color: #f0f0f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #020202;
  font-family: Heebo, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #d4a01733;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4a01759;
}

::selection {
  color: #d4a017;
  background: #d4a01733;
}

:focus-visible {
  outline-offset: 2px;
  border-radius: 4px;
  outline: 2px solid #d4a01766;
}

select {
  color: #f0f0f0;
  cursor: pointer;
  appearance: none;
  background-color: #161616;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-position: 10px 50%;
  background-repeat: no-repeat;
  border: 1px solid #ffffff0f;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: Heebo, sans-serif;
  font-size: .82rem;
}

select:focus {
  border-color: #d4a0174d;
  outline: none;
}

select option {
  color: #f0f0f0;
  background: #161616;
  padding: 8px;
}

.glass {
  -webkit-backdrop-filter: blur(20px);
  background: #161616d9;
  border: 1px solid #ffffff0f;
}

.glass-card {
  -webkit-backdrop-filter: blur(20px);
  background: #161616d9;
  border: 1px solid #ffffff0f;
  border-radius: 14px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.glass-card:hover {
  border-color: #d4a01726;
  box-shadow: 0 8px 40px #0000004d;
}

.glass-header {
  -webkit-backdrop-filter: blur(20px);
  background: #0a0a0ad9;
  border-bottom: 1px solid #ffffff0f;
}

.glass-sidebar {
  -webkit-backdrop-filter: blur(24px);
  background: #020202eb;
  border-left: 1px solid #d4a0170f;
}

.glass-modal {
  -webkit-backdrop-filter: blur(30px);
  background: #0f0f0ff2;
  border: 1px solid #d4a0171f;
  border-radius: 18px;
}

.glass-input {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff08;
  border: 1px solid #d4a01714;
  border-radius: 10px;
  transition: all .3s;
}

.glass-input:focus {
  border-color: #d4a01766;
  outline: none;
  box-shadow: 0 0 0 3px #d4a01714;
}

.shimmer-border {
  position: relative;
  overflow: hidden;
}

.shimmer-border:before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, #0000, #d4a01799, #0000);
  width: 200%;
  height: 2px;
  animation: 3s ease-in-out infinite shimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

.shimmer-border-right {
  position: relative;
  overflow: hidden;
}

.shimmer-border-right:after {
  content: "";
  z-index: 1;
  background: linear-gradient(#0000, #d4a01799, #0000);
  width: 2px;
  height: 200%;
  animation: 3s ease-in-out infinite shimmerVertical;
  position: absolute;
  top: -100%;
  right: 0;
}

.glow-hover {
  transition: box-shadow .4s;
}

.glow-hover:hover {
  box-shadow: 0 0 30px #d4a0171f, 0 8px 40px #0000004d;
}

.inner-glow-gold {
  box-shadow: inset 0 0 20px #d4a0170f;
}

.inner-glow-green {
  box-shadow: inset 0 0 20px #27ae600f;
}

.inner-glow-blue {
  box-shadow: inset 0 0 20px #4a9bd90f;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.page-enter, .stagger > * {
  animation: .4s cubic-bezier(.16, 1, .3, 1) both fadeSlideUp;
}

.stagger > :first-child {
  animation-delay: 30ms;
}

.stagger > :nth-child(2) {
  animation-delay: 60ms;
}

.stagger > :nth-child(3) {
  animation-delay: 90ms;
}

.stagger > :nth-child(4) {
  animation-delay: .12s;
}

.stagger > :nth-child(5) {
  animation-delay: .15s;
}

.stagger > :nth-child(6) {
  animation-delay: .18s;
}

.stagger > :nth-child(7) {
  animation-delay: .21s;
}

.stagger > :nth-child(8) {
  animation-delay: .24s;
}

.stagger > :nth-child(9) {
  animation-delay: .27s;
}

.stagger > :nth-child(10) {
  animation-delay: .3s;
}

@keyframes slideUpModal {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.slide-up-enter {
  animation: .4s cubic-bezier(.16, 1, .3, 1) both slideUpModal;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-enter {
  animation: .3s cubic-bezier(.16, 1, .3, 1) both fadeInScale;
}

@keyframes countPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.count-update {
  animation: .3s countPulse;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes shimmerVertical {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 #27ae6066;
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 8px #27ae6000;
  }
}

@keyframes livePulseGold {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 #d4a01766;
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 8px #d4a01700;
  }
}

@keyframes livePulseRed {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 #e74c3c66;
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 8px #e74c3c00;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gridShift {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

@keyframes scanDown {
  0% {
    top: -2px;
  }

  100% {
    top: 100vh;
  }
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0)scale(1);
  }

  25% {
    transform: translate(20px, -15px)scale(1.03);
  }

  50% {
    transform: translate(-15px, 20px)scale(.97);
  }

  75% {
    transform: translate(10px, 10px)scale(1.01);
  }
}

.tap {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  transition: transform .1s, opacity .1s;
}

.tap:active {
  opacity: .85;
  transform: scale(.96);
}

.hover-lift {
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #0000004d;
}

.num {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  font-family: JetBrains Mono, monospace;
}

.gold-text {
  background: linear-gradient(135deg, #e8c547, #d4a017, #a67c00);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.section-title {
  color: #f0f0f0;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
}

.section-title:before {
  content: "";
  background: linear-gradient(#d4a017, #a67c00);
  border-radius: 2px;
  width: 3px;
  height: 16px;
}

.progress-glow {
  background: #ffffff0a;
  border-radius: 3px;
  height: 6px;
  position: relative;
  overflow: hidden;
}

.progress-glow .fill {
  border-radius: 3px;
  height: 100%;
  transition: width .8s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.progress-glow .fill:after {
  content: "";
  background: inherit;
  filter: blur(4px);
  opacity: .8;
  border-radius: 3px;
  width: 6px;
  height: 10px;
  position: absolute;
  top: -2px;
  right: 0;
}

.progress-gold .fill {
  background: linear-gradient(90deg, #a67c00, #d4a017, #e8c547);
}

.progress-green .fill {
  background: linear-gradient(90deg, #1e8449, #27ae60, #2ecc71);
}

.progress-blue .fill {
  background: linear-gradient(90deg, #2471a3, #4a9bd9, #5dade2);
}

.progress-red .fill {
  background: linear-gradient(90deg, #c0392b, #e74c3c, #ec7063);
}

.progress-orange .fill {
  background: linear-gradient(90deg, #d68910, #f39c12, #f5b041);
}

.ambient-grid {
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(#d4a01704 1px, #0000 1px), linear-gradient(90deg, #d4a01704 1px, #0000 1px);
  background-size: 60px 60px;
  animation: 30s linear infinite gridShift;
  position: fixed;
  inset: 0;
}

.ambient-scanline {
  z-index: 9999;
  opacity: .15;
  pointer-events: none;
  background: linear-gradient(90deg, #0000, #d4a017, #0000);
  height: 2px;
  animation: 8s ease-in-out infinite scanDown;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 15px #d4a017;
}

.ambient-orb {
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: .12;
  border-radius: 50%;
  position: fixed;
}

.ambient-orb-1 {
  background: radial-gradient(circle, #d4a01714, #0000 70%);
  width: 350px;
  height: 350px;
  animation: 16s ease-in-out infinite orbFloat;
  top: -5%;
  right: 10%;
}

.ambient-orb-2 {
  background: radial-gradient(circle, #d4a0170d, #0000 70%);
  width: 250px;
  height: 250px;
  animation: 20s ease-in-out 5s infinite orbFloat;
  bottom: 10%;
  left: 25%;
}

.ambient-corner {
  z-index: 2;
  pointer-events: none;
  width: 35px;
  height: 35px;
  position: fixed;
}

.ambient-corner:before, .ambient-corner:after {
  content: "";
  opacity: .08;
  background: #d4a017;
  position: absolute;
}

.corner-tr {
  top: 10px;
  right: 10px;
}

.corner-tr:before {
  width: 18px;
  height: 1.5px;
  top: 0;
  right: 0;
}

.corner-tr:after {
  width: 1.5px;
  height: 18px;
  top: 0;
  right: 0;
}

.corner-tl {
  top: 10px;
  left: 10px;
}

.corner-tl:before {
  width: 18px;
  height: 1.5px;
  top: 0;
  left: 0;
}

.corner-tl:after {
  width: 1.5px;
  height: 18px;
  top: 0;
  left: 0;
}

.corner-br {
  bottom: 10px;
  right: 10px;
}

.corner-br:before {
  width: 18px;
  height: 1.5px;
  bottom: 0;
  right: 0;
}

.corner-br:after {
  width: 1.5px;
  height: 18px;
  bottom: 0;
  right: 0;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
}

.corner-bl:before {
  width: 18px;
  height: 1.5px;
  bottom: 0;
  left: 0;
}

.corner-bl:after {
  width: 1.5px;
  height: 18px;
  bottom: 0;
  left: 0;
}

.card {
  background: #d4a01708;
  border: 1px solid #d4a01714;
  border-radius: 14px;
  padding: 20px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.card:hover {
  border-color: #d4a01733;
  box-shadow: 0 8px 40px #0006;
}

.card-solid {
  background: #080808;
  border: 1px solid #d4a01714;
  border-radius: 14px;
}

.btn-gold {
  color: #020202;
  cursor: pointer;
  background: linear-gradient(135deg, #d4a017, #a67c00);
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: Heebo, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-gold:after {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff26, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-gold:hover:after {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px #d4a01759;
}

.btn-gold:active {
  transform: translateY(0)scale(.97);
}

.btn-outline {
  color: #d4a017;
  cursor: pointer;
  background: none;
  border: 1.5px solid #d4a01733;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: Heebo, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.btn-outline:hover {
  background: #d4a0170f;
  border-color: #d4a01766;
}

.btn-ghost {
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: Heebo, sans-serif;
  font-size: .82rem;
  font-weight: 500;
  transition: all .3s;
  display: inline-flex;
}

.btn-ghost:hover {
  color: #d4a017;
  background: #d4a0170a;
}

.btn-green {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #27ae60, #1e8449);
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: Heebo, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: all .3s;
  display: inline-flex;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #27ae604d;
}

.btn-red {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: Heebo, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: all .3s;
  display: inline-flex;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #e74c3c4d;
}

.btn-blue {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #4a9bd9, #2471a3);
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: Heebo, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: all .3s;
  display: inline-flex;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #4a9bd94d;
}

.input {
  color: #f0f0f0;
  background: #ffffff08;
  border: 1px solid #d4a01714;
  border-radius: 10px;
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  font-family: Heebo, sans-serif;
  font-size: .88rem;
  transition: all .3s;
}

.input:focus {
  border-color: #d4a017;
  outline: none;
  box-shadow: 0 0 0 3px #d4a01714;
}

.input::placeholder {
  color: #555;
}

.badge {
  white-space: nowrap;
  border-radius: 100px;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.badge-green {
  color: #27ae60;
  background: #27ae6014;
  border: 1px solid #27ae601f;
}

.badge-red {
  color: #e74c3c;
  background: #e74c3c14;
  border: 1px solid #e74c3c1f;
}

.badge-orange {
  color: #f39c12;
  background: #f39c1214;
  border: 1px solid #f39c121f;
}

.badge-blue {
  color: #4a9bd9;
  background: #4a9bd914;
  border: 1px solid #4a9bd91f;
}

.badge-purple {
  color: #9b59b6;
  background: #9b59b614;
  border: 1px solid #9b59b61f;
}

.badge-gold {
  color: #d4a017;
  background: #d4a01714;
  border: 1px solid #d4a0171f;
}

.sidebar {
  -webkit-backdrop-filter: blur(24px);
  z-index: 100;
  background: #020202f2;
  border-left: 1px solid #d4a0170f;
  width: 220px;
  padding: 20px 16px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
}

.main-content {
  width: calc(100% - 220px);
  min-height: 100vh;
  margin-right: 220px;
  padding: 0 24px;
  transition: margin .3s, width .3s;
}

.table-container {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #16161680;
  border: 1px solid #d4a01714;
  border-radius: 14px;
  overflow-x: auto;
}

.table-container table {
  border-collapse: collapse;
  width: 100%;
}

.table-container th {
  text-align: right;
  color: #d4a017;
  letter-spacing: .5px;
  white-space: nowrap;
  background: #d4a0170a;
  border-bottom: 1px solid #d4a01714;
  padding: 12px 16px;
  font-size: .75rem;
  font-weight: 700;
}

.table-container td {
  color: #ccc;
  border-bottom: 1px solid #ffffff05;
  padding: 12px 16px;
  font-size: .85rem;
  transition: background .2s;
}

.table-container tr:hover td {
  background: #d4a01708;
}

.kpi {
  background: #d4a01708;
  border: 1px solid #d4a01714;
  border-radius: 14px;
  padding: 20px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.kpi:before {
  content: "";
  background: linear-gradient(90deg, #0000, #d4a01766, #0000);
  width: 200%;
  height: 2px;
  animation: 4s ease-in-out infinite shimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

.kpi:hover {
  border-color: #d4a01733;
  box-shadow: 0 8px 30px #0000004d;
}

.kpi-value {
  background: linear-gradient(135deg, #e8c547, #d4a017);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: JetBrains Mono, monospace;
  font-size: 1.8rem;
  font-weight: 700;
}

.kpi-label {
  color: #888;
  margin-top: 4px;
  font-size: .78rem;
}

.kpi-change {
  margin-top: 8px;
  font-family: JetBrains Mono, monospace;
  font-size: .72rem;
  font-weight: 600;
}

.kpi-change.up {
  color: #27ae60;
}

.kpi-change.down {
  color: #e74c3c;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  background: #000000bf;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-content {
  background: #0a0a0a;
  border: 1px solid #d4a01726;
  border-radius: 18px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  padding: 28px;
  animation: .3s cubic-bezier(.16, 1, .3, 1) fadeInScale;
  overflow-y: auto;
}

.spinner {
  border: 3px solid #d4a0171a;
  border-top-color: #d4a017;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: .8s linear infinite spin;
}

.skeleton {
  background: linear-gradient(90deg, #ffffff08 25%, #ffffff0f 50%, #ffffff08 75%) 0 0 / 200% 100%;
  border-radius: 8px;
  animation: 1.5s ease-in-out infinite skeletonPulse;
}

@keyframes skeletonPulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.toggle-track {
  cursor: pointer;
  background: #333;
  border-radius: 13px;
  width: 48px;
  height: 26px;
  transition: background .3s;
  position: relative;
}

.toggle-track.active {
  background: linear-gradient(135deg, #d4a017, #a67c00);
}

.toggle-thumb {
  background: #fff;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  transition: transform .3s cubic-bezier(.68, -.55, .27, 1.55);
  position: absolute;
  top: 3px;
  right: 3px;
  box-shadow: 0 2px 4px #0000004d;
}

.toggle-track.active .toggle-thumb {
  transform: translateX(-22px);
}

@media (max-width: 767px) {
  .sidebar {
    width: 280px;
    transform: translateX(100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    width: 100%;
    margin-right: 0;
    padding: 0 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sidebar {
    width: 220px;
  }

  .main-content {
    width: calc(100% - 220px);
    margin-right: 220px;
  }
}

@media (min-width: 1024px) {
  .sidebar {
    width: 220px;
  }

  .main-content {
    width: calc(100% - 220px);
    margin-right: 220px;
    padding: 0 28px;
  }
}

@media (min-width: 1440px) {
  .main-content {
    padding: 36px;
  }
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/