.footer__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

/* Green Button for CLAIM YOUR PRIZE */
.pop_btn.cta, a.cta.pop_btn {
    background-color: #28a745 !important;
    background-image: linear-gradient(180deg, #28a745 0%, #218838 100%) !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 22px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    border-radius: 10px !important;
    border: 1px solid #1e7e34 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.2s ease !important;
    display: block !important;
    text-decoration: none !important;
    cursor: pointer !important;
    margin: 20px auto 0 !important;
    width: fit-content !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.pop_btn.cta:hover, a.cta.pop_btn:hover {
    background-color: #218838 !important;
    background-image: linear-gradient(180deg, #218838 0%, #1e7e34 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3) !important;
}

.pop_btn.cta:active, a.cta.pop_btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}