/* style.css */

/* Hide Scrollbars but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Input Number Reset */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] {
  -moz-appearance: textfield;
}

/* Infinite Marquee Animation for Stats Ticker */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

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

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Premium Card Hover Effects */
.prediction-card {
    transition: all 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.15);
}

.outcome-row {
    position: relative;
    transition: background-color 0.2s ease;
}

.outcome-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.outcome-row:active {
    transform: scale(0.99);
}

.outcome-bar-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: inherit;
    opacity: 0.15;
    z-index: 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-content {
    position: relative;
    z-index: 10;
}
