.no-scrollbar::-webkit-scrollbar {
  display: none;
}

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

/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* 3D Premium Card */
.card-3d {
  background: white;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.02);
}
@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 40s linear infinite;
}

.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 40s linear infinite;
}

.animate-marquee-left:hover, .animate-marquee-right:hover {
    animation-play-state: paused;
}
.card-3d:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 20px 40px rgba(1, 25, 255, 0.1);
}

.card-3d-header {
  background: linear-gradient(135deg, #0119ff 0%, #0012b3 100%);
  border-radius: 20px 20px 5px 5px;
  box-shadow: 0 4px 15px rgba(1, 25, 255, 0.3);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-slideUp { animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fadeIn { animation: fadeIn 0.4s ease-out forwards; }

/* Global Loading Bar */
#loadingBar {
    pointer-events: none;
    background: linear-gradient(90deg, #0119ff, #4d61ff);
    box-shadow: 0 0 10px rgba(1, 25, 255, 0.5);
    z-index: 9999;
    height: 3px;
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.1, 0.5, 0.5, 1);
}

#loadingBar.loading-active {
    opacity: 1;
}

#loadingBar.loading-done {
    opacity: 0;
    width: 100% !important;
    transition: width 0.3s ease-out, opacity 0.5s 0.3s ease-out;
}

