:root {
    --wp-bg: #0b0d24;          /* Dark navy background */
    --wp-bg-light: #10132f;    /* Slightly lighter dark */
    --wp-bg-dark: #151832;     /* Card background */
    --wp-accent: #6c47ff;      /* Violet accent */
    --wp-shadow: 0 8px 25px rgba(108, 71, 255, 0.35); /* Purple glow */
}

.why-popular {
    background: var(--wp-bg);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.why-popular .wp-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--wp-bg-dark);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: var(--wp-shadow);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-popular .wp-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 71, 255, 0.4);
}

/* Animated Border */
.why-popular .wp-wrap::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: conic-gradient(from 0deg,
            var(--wp-accent),
            transparent 90deg,
            var(--wp-accent) 180deg,
            transparent 270deg,
            var(--wp-accent) 360deg);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin-border 4s linear infinite;
    z-index: -1;
}

@keyframes spin-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.why-popular h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--wp-accent);
    letter-spacing: 1px;
}

.why-popular p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e2e2;
    margin-bottom: 0;
}