/* Custom font */
@font-face {
    font-family: 'Selecta';
    src: url('Selecta Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    font-size: 15px;
font-style: normal;
font-weight: 500;
}

/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    opacity: 1;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.5;
}

body {
    font-family: 'Selecta', sans-serif;
    background-color: black;
}

.cd {
    display: inline-block;
    animation: spin 5s linear infinite;
    transform-origin: 50% 43%;
    line-height: 1;
}

@media (max-width: 767px) {
    .cd {
        font-size: 0.85em;
    }
}

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

.ball-blink {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.marquee {
    width: max-content;
    animation: marquee 34s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-frame {
    position: relative;
    overflow: hidden;
}

.marquee-frame::before,
.marquee-frame::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 1;
}

.marquee-frame::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-frame::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.jackpot-message {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.15px;
    white-space: nowrap;
    color: #ffffff;
    opacity: 1;
}

.jackpot-char {
    display: inline-block;
    color: #ffffff;
    text-shadow: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.jackpot-char--flash {
    color: var(--jackpot-color, #00d4df);
    animation: jackpotFlash 0.45s linear infinite;
}

.jackpot-char--resolved {
    color: #ffffff;
    text-shadow: none;
}

@keyframes jackpotFlash {
    0% {
        color: var(--jackpot-color, #00d4df);
        text-shadow: none;
    }
    100% {
        color: var(--jackpot-color, #00d4df);
        text-shadow: none;
    }
}


