/* UL reset */
.coupon-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* LI spacing */
.coupon-widget li {
    margin-bottom: 12px;
    line-height: 1.45;
}

/* Coupon link */
.coupon-widget a {
    display: inline-block;
    padding: 6px 0;
    text-decoration: none;
    color: #FFD700; /* MLB gold */
    font-weight: 600;
    transition: all 0.25s ease;
}

/* Hover glow */
.coupon-widget a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #FFD700, 0 0 18px #FFD700;
    transform: translateX(4px);
}

/* Merchant styling */
.coupon-widget .merchant {
    color: #c9c9c9;
    font-weight: 500;
    margin-left: 6px;
    opacity: 0.9;
}

/* Category-specific hover colors */
.coupon-widget.restaurants a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700;
}

.coupon-widget.travel a:hover {
    color: #7ec8ff;
    text-shadow: 0 0 10px #7ec8ff;
}

.coupon-widget.groceries a:hover {
    color: #7fff7e;
    text-shadow: 0 0 10px #7fff7e;
}

.coupon-widget.local a:hover {
    color: #ffb36b;
    text-shadow: 0 0 10px #ffb36b;
}

.coupon-widget.freebies a:hover {
    color: #c78bff;
    text-shadow: 0 0 10px #c78bff;
}
