/* Full Screen Overlay */
.pg-adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Dark Background */
    backdrop-filter: blur(10px); /* Blur Effect */
    z-index: 99999999; /* Sab se upar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* The Box */
.pg-adblock-box {
    background: #fff;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: popIn 0.3s ease-out;
    border-top: 5px solid #ff3366; /* Brand Color */
}

/* Icon */
.pg-adblock-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Typography */
.pg-adblock-box h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.pg-adblock-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

/* Button */
.pg-adblock-btn {
    background: #ff3366;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 10px;
    width: 100%;
}

.pg-adblock-btn:hover {
    background: #e0244b;
    transform: scale(1.05);
}

/* Animation */
@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobile Fix */
@media (max-width: 600px) {
    .pg-adblock-box {
        padding: 30px 20px;
    }
    .pg-adblock-box h3 {
        font-size: 20px;
    }
}