:root {
    --gold-1: #FCE7A7;
    --gold-2: #F7D774;
    --gold-3: #E7C148;
    --gold-4: #C59A2A;
    --gold-5: #8C6A1F;
    --gold-6: #3F2A09;
    --dark: #0C0B07;
}

/* Add Poppins font to the body */
body {
    font-family: 'Poppins', sans-serif;
}

.sheen {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.sheen::after {
    content: "";
    position: absolute;
    inset: -200%;
    background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, .18) 50%, transparent 55%);
    transform: translateX(-40%) rotate(10deg);
    animation: sweep 5s linear infinite;
    pointer-events: none;
}

@keyframes sweep {
    0% {
        transform: translateX(-50%) rotate(10deg);
    }
    100% {
        transform: translateX(50%) rotate(10deg);
    }
}

.gold-card {
    background: radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 40%), linear-gradient(180deg, var(--gold-1), var(--gold-2) 25%, var(--gold-3) 55%, var(--gold-4) 85%, var(--gold-5));
    box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 -1px 0 rgba(0, 0, 0, .2) inset, 0 18px 35px rgba(0, 0, 0, .45), 0 8px 12px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .35);
}

.gold-ring {
    background: radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, 0) 45%), linear-gradient(145deg, var(--gold-2), var(--gold-4));
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, .4), inset 0 -2px 4px rgba(0, 0, 0, .25), 0 6px 12px rgba(0, 0, 0, .25);
}

.btn-gold {
    background: linear-gradient(180deg, var(--gold-2), var(--gold-3) 60%, var(--gold-4));
    box-shadow: 0 1px 0 rgba(255, 255, 255, .55) inset, 0 -1px 0 rgba(0, 0, 0, .25) inset, 0 6px 12px rgba(0, 0, 0, .25);
    transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-gold:hover {
    filter: brightness(1.05);
}

.btn-gold:active {
    transform: translateY(1px);
    box-shadow: 0 0 0 rgba(255, 255, 255, .55) inset, 0 -1px 0 rgba(0, 0, 0, .25) inset, 0 3px 6px rgba(0, 0, 0, .3);
}

.slider-track {
    background: linear-gradient(90deg, rgba(255, 255, 255, .4), rgba(0, 0, 0, .2));
}

.slider-fill {
    background: linear-gradient(90deg, #fff6d8, var(--gold-3));
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25), 0 0 10px rgba(255, 230, 140, .6);
}

.gold-scroll::-webkit-scrollbar {
    width: 10px;
}

.gold-scroll::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(0, 0, 0, .15));
    border-radius: 999px;
}

.gold-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-3), var(--gold-4));
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .35);
}

.gold-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-3) rgba(255, 255, 255, .15);
}