﻿/* ===== REFRESH BUTTON GOLD PREMIUM ===== */

#refreshBtn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    font-size: 26px;
    cursor: pointer;

    /* GOLD LOOK */
    color: #1b1f22;
    background: linear-gradient(145deg, #FFD700, #c9a300);
    border: none;

    /* Glow */
    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 25px rgba(255, 215, 0, 0.4),
        inset 0 0 5px rgba(255,255,255,0.4);

    transition: all 0.3s ease;
}

/* Hover Effekt */
#refreshBtn:hover {
    transform: scale(1.1) rotate(20deg);

    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 35px rgba(255, 215, 0, 0.7),
        inset 0 0 8px rgba(255,255,255,0.6);
}

/* Klick Effekt */
#refreshBtn:active {
    transform: scale(0.95) rotate(-10deg);
}

/* Subtile Idle Animation (lebt wie dein Button unten rechts) */
@keyframes goldPulse {
    0% {
        box-shadow:
            0 0 8px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow:
            0 0 18px rgba(255, 215, 0, 0.8),
            0 0 35px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow:
            0 0 8px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
}

#refreshBtn {
    animation: goldPulse 2.5s infinite;
}
/* CSS Document */

