/* ---------- Sponsored Buttons ---------- */

.sponsored-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.25s;
}
.sponsored-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.20);
}

/* --- Premium Sponsored Section --- */

.sponsor-wrapper {
    margin: 40px 0;
    border-radius: 20px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sponsor-wrapper::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(10px);
}

.sponsor-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.sponsor-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sponsor-card {
    width: 280px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.3);
}

.sponsor-badge {
    font-size: 13px;
    color: #ffdf85;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.sponsor-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sponsor-btn {
    display: inline-block;
    background: #ffdf85;
    padding: 10px 20px;
    border-radius: 30px;
    color: #1e3c72;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.sponsor-btn:hover {
    background: #ffeab0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}