html {
    scroll-behavior: smooth;
}

body {
    background-color: #fcfcfc;
    color: #0a0a0a;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    padding-bottom: 70px;
}

.logo-container {
  background-color: transparent;
  padding: 2px;
  text-align: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #D4AF37;
  letter-spacing: 4px;
  margin-top: 1px;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 350px;
    max-height: 400px;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #FFD700;
}

@media (min-width: 768px) {
    .chart-container {
        height: 400px;
    }
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    z-index: 50;
    border-top: 2px solid #FFD700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}



#overlay.opacity-100 {
    opacity: 1;
}
      
     /* Carousel Slide Transition */
        .slide { transition: opacity 0.5s ease-in-out; }
        
        html { scroll-behavior: smooth; }