
 .wppromo-promo-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0a0a14;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    padding: 0 25px;
    position: relative;
    border-radius: 10px;
}


.wppromo-disabled{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    display: none;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    font-weight: 900;
}


/* The div with the border - takes 100% width */
.wppromo-bordered-div {
    position: relative;
    width: 100%;
    min-height: 100px;
    background: rgba(15, 20, 30, 0.9);
    border-radius: 12px;
    margin: 20px 0;
    /* Real CSS border */
    border: 2px solid rgba(100, 150, 255, 0.3);
    
    /* Subtle glow animation */
    box-shadow: 
        0 0 0 0 rgba(100, 150, 255, 0.1),
        inset 0 0 0 0 rgba(100, 150, 255, 0.05);
    animation: border-glow 4s ease-in-out infinite;
    
    /* Content styling */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-bottom: 40px;
}

.wppromo-bordered-div h2{
    color: #FFF;
    font-weight: 700;
    font-size: 1.5rem;
}

@keyframes border-glow {
    0%, 100% {
        box-shadow: 
            0 0 0 0 rgba(100, 150, 255, 0.1),
            inset 0 0 0 0 rgba(100, 150, 255, 0.05);
        border-color: rgba(100, 150, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px 0 rgba(100, 150, 255, 0.15),
            inset 0 0 20px 0 rgba(100, 150, 255, 0.08);
        border-color: rgba(100, 150, 255, 0.4);
    }
}

/* The orbiting wppromo-start - positioned on the border */
.wppromo-start {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 10px #ffffff,
        0 0 20px #4cc9f0,
        0 0 30px #4cc9f0;
    z-index: 10;
    
    /* Orbit animation using percentages */
    animation: orbit-perimeter 16s linear infinite;
}

/* wppromo-start trail effect */
.wppromo-start::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Percentage-based orbit that works with any width */
@keyframes orbit-perimeter {
    /* wppromo-startt at top-left wppromo-corner (0%) */
    0% {
        top: -6px;
        left: 0%;
    }
    
    /* Top side: left to right - 25% of animation */
    25% {
        top: -6px;
        left: 100%;
        transform: translateX(-50%);
    }
    
    /* Right side: top to bottom - next 25% */
    50% {
        top: 100%;
        left: 100%;
        transform: translate(-50%, -50%);
    }
    
    /* Bottom side: right to left - next 25% */
    75% {
        top: 100%;
        left: 0%;
        transform: translateY(-50%);
    }
    
    /* Left side: bottom to top - final 25% */
    100% {
        top: -6px;
        left: 0%;
    }
}

.wpporomo-content {
    text-align: center;
    color: #f0f5ff;
}

.wppromo-bordered-div h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #f0f5ff, #b8d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wppromo-bordered-div p {
    color: #b8d4ff;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wppromo-bordered-div {
        min-height: 250px;
        padding: 30px 20px;
    }
    
    .wppromo-bordered-div h1 {
        font-size: 2rem;
    }
    
    .wppromo-bordered-div p {
        font-size: 1rem;
    }
    
    .wppromo-start {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .wppromo-bordered-div {
        min-height: 200px;
        padding: 25px 15px;
    }
    
    .wppromo-bordered-div h1 {
        font-size: 1.7rem;
    }
    
    .wppromo-start {
        width: 8px;
        height: 8px;
    }
}

/* Corner markers to visualize the path */
.wppromo-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(76, 201, 240, 0.2);
}

.wppromo-corner-tl {
    top: -4px;
    left: -4px;
}

.wppromo-corner-tr {
    top: -4px;
    right: -4px;
}

.wppromo-corner-br {
    bottom: -4px;
    right: -4px;
}

.wppromo-corner-bl {
    bottom: -4px;
    left: -4px;
}


/* NEON RAY BUTTON, BREATHING BUTTON */

.wppromo-neon-btn {
    position: relative;
    padding: 10px 60px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0ff;
    text-transform: uppercase;
    background: transparent;
    border: 4px solid #0ff;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    animation: breathe 3s ease-in-out infinite, flicker 5s linear infinite;
    text-decoration: none !important;
    display: inline-block;
}

/* Breathing Animation */
@keyframes breathe {
    0%, 100% {
        box-shadow: 
            0 0 10px #0ff,
            0 0 20px #0ff,
            inset 0 0 10px #0ff;
    }
    50% {
        box-shadow: 
            0 0 25px #0ff,
            0 0 50px #0ff,
            inset 0 0 15px #0ff;
        text-shadow: 0 0 10px #fff;
    }
}

/* Subtle Flicker for extra "ad-like" imperfection */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.85;
    }
}

.wppromo-neon-btn:hover {
    background-color: rgba(0, 255, 255, 0.1);
    animation-play-state: paused;
}