:root {
    --primary-bg: #0a081a;
    --gold: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
}

body {
    background-color: #0a081a;
    font-family: 'Outfit', sans-serif;
}

.gold-text {
    background: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.gold-gradient {
    background: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
}

.btn-primary-gold {
    background: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
    color: #0a081a;
    box-shadow: 0 10px 30px rgba(255, 143, 0, 0.3);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-primary-gold:hover {
    transform: translateY(-5px);
}

#winner-box {
    transition: all 0.5s ease-in-out;
    will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    #winner-box,
    .btn-primary-gold {
        transition: none;
    }
}