html, body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: #11131a;
    color: #e5e7eb;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .glass {
    background: rgba(36, 39, 52, 0.75);
    backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .glass:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
  }

  .btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd5e1;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-radius: 6px;
    padding: 6px 12px;
    transition: all 0.2s ease;
  }

  .btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
  }

  .logo { width: 160px; }

  @media (max-width: 1024px) {
    .main-grid { flex-direction: column; height: auto; overflow-y: auto; }
    .side-cards { width: 100%; grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(150px, 1fr); }
    .chart-container { height: 45vh; }
  }

  @media (max-width: 640px) {
    .side-cards { grid-template-columns: 1fr; }
    .chart-container { height: 40vh; }
    .header-controls { flex-direction: column; align-items: flex-start; gap: 8px; }
  }

  @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease-out forwards;
}

/* Optional: staggered delays for sequence timing */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-chart { animation-delay: 0.5s; }

.text-green-400{
  color:#47ceb2 !important;
}

.button-border{
  border:1px solid #47ceb2;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* keeps horizontal carousels clean and aligned */
.snap-x {
  scroll-snap-type: x mandatory;
}
.snap-x > * {
  scroll-snap-align: start;
}

.close-messages{
  top: 7px;
  position: relative;
  margin-right: 5px;
  margin-left: 5px;
  color: #47ceb2;
  cursor:pointer;
}