.reselldeal-pro-banner-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
}

.reselldeal-pro-banner-wrapper > div:first-child {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.reselldeal-pro-banner {
    font-family: 'Noto Sans Bengali', sans-serif;
    background: linear-gradient(135deg,
        #c2185b 0%,
        #d81b60 20%,
        #e91e63 40%,
        #f06292 60%,
        #ff8a65 80%,
        #ffca28 100%
    );
    color: #fff;
    padding: 50px 20px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    max-width: 1200px;
    text-align: center;
}

.reselldeal-pro-banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 20px) scale(1.1); }
}

.reselldeal-pro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reselldeal-pro-content h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.8px;
}

.reselldeal-pro-content h2 span {
    color: #ffeb3b;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.reselldeal-pro-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #fff8f8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reselldeal-pro-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-pro.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #c2185b, #d81b60, #e91e63, #f06292, #ff8a65, #ffca28);
    color: #fff;
    min-height: 54px;
    min-width: 210px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pro.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .reselldeal-pro-banner { padding: 40px 18px; }
    .reselldeal-pro-content h2 { font-size: 20px; }
    .reselldeal-pro-content p { font-size: 17px; }
    .btn-pro.primary { padding: 15px 32px; font-size: 16px; min-width: 190px; }
}

@media (max-width: 600px) {
    .reselldeal-pro-banner { padding: 25px 12px; }
    .reselldeal-pro-content h2 { font-size: 19px; margin-bottom: 12px; }
    .reselldeal-pro-content p { font-size: 14px; margin-bottom: 20px; }
    .btn-pro.primary { padding: 12px 24px; font-size: 14px; min-width: unset; }
}

@media (max-width: 380px) {
    .reselldeal-pro-content h2 { font-size: 18px; }
    .reselldeal-pro-content p { font-size: 13px; }
    .btn-pro.primary { font-size: 13px; padding: 10px 14px; }
}