.wcminiverse-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #4a90e2;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.wcminiverse-label:hover {
    transform: scale(1.1);
}

.wcminiverse-notice {
    background-color: #e6f0fa;
    border: 2px solid #4a90e2;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wcminiverse-notice h3 {
    color: #4a90e2;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.wcminiverse-notice p {
    color: #333;
    font-size: 16px;
    margin: 5px 0;
}

.wcminiverse-promo-button {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.wcminiverse-promo-button:hover {
    background-color: #357abd;
}