/* ===== FIX: custom additions (register button, animations) ===== */

/* Register button — sits on the right side of the header */
#header_register_btn {
    margin-left: auto;
    margin-right: 12px;
    padding: 6px 18px;
    border-radius: 30px;
    background: #f3c239;
    color: #1a1a1a !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    line-height: normal !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(243, 194, 57, 0.5);
}

/* Big-to-small pulse loop. Removed via JS the moment the button is clicked. */
#header_register_btn.pulse-anim {
    animation: acePulse 1.1s ease-in-out infinite;
}

@keyframes acePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
    100% {
        transform: scale(1);
    }
}

/* Make it obvious game cards / footer nav items are clickable */
.game-item {
    cursor: pointer;
}
