@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
    --gold-main: #f3cc4d;
    --gold-gradient: linear-gradient(180deg, #fce08a 0%, #f3cc4d 48%, #b38b1d 100%);
    --bg-dark: #050505;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    margin: 0;
}

/* Exact Brand Font from Image */
.brand-logo {
    font-family: 'Oswald', sans-serif;
    color: var(--gold-main);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: -1px;
    border-bottom: 3px solid var(--gold-main);
    line-height: 1;
}

/* High-End Professional Button */
.btn-gold-pro {
    background: var(--gold-gradient);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 28px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 20px rgba(243, 204, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold-pro:hover { transform: translateY(-2px); filter: brightness(1.2); }

/* Winner Pill Glassmorphism */
.winner-pill-pro {
    background: rgba(10, 10, 10, 0.9);
    border: 1.5px solid var(--gold-main);
    border-radius: 60px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 380px;
    box-shadow: inset 0 0 15px rgba(243, 204, 77, 0.1);
}

/* Multi-Color Firework Target */
#firework-zone { position: relative; width: 100%; }