#adblock-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #fff9f0, #fde2b9);
    color: #3b2d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    z-index: 99999;
    font-family: "Segoe UI", sans-serif;
    animation: fadeIn 0.5s ease-out;
    box-sizing: border-box;
}

.adblock-content {
    max-width: 400px;
}

.adblock-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

#adblock-fullscreen h1 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d17b00;
}

#adblock-fullscreen p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

#adblock-close-btn {
    background-color: #ffb74d;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 220px;
    transition: background-color 0.3s ease;
}

#adblock-close-btn:hover {
    background-color: #ffa000;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
