
/* ══ BOKEH BACKGROUND ══════════════════════════════════════════ */
.bokeh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #0D0805;
}

.bokeh-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15; 
    mix-blend-mode: screen;
    animation: float-bokeh var(--duration) ease-in-out infinite alternate;
}

.bokeh-sphere-gold { background: radial-gradient(circle, #D8B98A 0%, transparent 70%); }
.bokeh-sphere-terra { background: radial-gradient(circle, #FF8531 0%, transparent 70%); }

@keyframes float-bokeh {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(var(--tx), var(--ty)) scale(1.5) rotate(45deg); }
}

/* ══ PREMIUM BUTTONS (GOLD GLOW) ══════════════════════════════ */
.btn-gold-glow {
    position: relative;
    padding: 1.25rem 2.8125rem;
    background: linear-gradient(135deg, #D8B98A 0%, #A68A56 100%);
    color: #4A2B15 !important;
    text-decoration: none;
    border-radius: 3.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 0px rgba(216, 185, 138, 0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-gold-glow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(216, 185, 138, 0.3), 0 0 20px rgba(216, 185, 138, 0.2);
    filter: brightness(1.1);
}

.btn-gold-glow::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
    left: -150%;
}

.btn-gold-glow:hover::after {
    left: 100%;
}
