
.wpl-box {
    position: relative;
    padding: 6px 12px;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: default;
    line-height: 1.2;
}

.wpl-box .icon {
    font-size: 16px;
    line-height: 1;
}

.wpl-star {
    border: 2px solid gold;
    box-shadow: 0 0 10px gold;
}

.wpl-shield {
    border-radius: 0 0 12px 12px;
    padding: 10px 12px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.wpl-badge {
    border-radius: 50px;
    padding: 6px 18px;
}

.wpl-minimal {
    background: #222 !important;
    color: #fff !important;
    border: 1px solid #555;
}

.wpl-gold {
    background: linear-gradient(45deg, #ffd700, #ffec8b);
    color: #000;
    box-shadow: 0 0 12px #ffd700;
}

.wpl-vip {
    background: #ff00ff;
    color: #fff;
    box-shadow: 0 0 12px #ff00ff;
}

.wpl-neon {
    background: #0ff;
    color: #000;
    text-shadow: 0 0 8px #0ff;
}

.wpl-3d {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.wpl-custom {}

.wpl-box[data-tooltip]:hover::after,
.wpl-box[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateY(-6px);
    pointer-events: auto;
}

.wpl-box::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(0);
    transition: 0.25s ease;
    z-index: 9999;
}

.wpl-box::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 10px;
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transform: translateY(0);
    transition: 0.25s ease;
}
