/* Scroll to Top Button - 7d5d0f6c */
.fanschoice-to-top-7d5d0f6c {
    display: none; /* Hidden initially */
    position: fixed; /* Stays on screen */
    bottom: 25px; /* Distance from bottom */
    right: 25px; /* Distance from right */
    z-index: 9999; /* Sits above everything */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b4932c); /* Gold Color */
    border: none;
    color: #000; /* Black icon */
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* 3D shadow */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fanschoice-to-top-7d5d0f6c:hover {
    transform: translateY(-5px); /* Lifts up slightly */
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
    background: #b4932c; /* Darker gold on hover */
    color: #fff; /* Turns icon white on hover */
}
