/* public/css/ads.css */

/* --- 1. FULL SCREEN OVERLAY --- */
#ad-lock-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000000; /* Pure Black Background */
    z-index: 2147483647; /* Top layer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Safety padding for mobile edges */
    box-sizing: border-box;
}

/* --- 2. MANGA CARD (The Box) --- */
.ad-lock-content {
    background-color: #111;
    border: 3px solid #ffffff; /* Thick Manga Border */
    border-radius: 8px;
    padding: 30px 25px;
    width: 100%;
    max-width: 350px; /* Prevents it from getting too wide */
    text-align: center;
    position: relative;
    box-shadow: 10px 10px 0px rgba(50, 50, 50, 0.5); /* Comic shadow effect */
}

/* --- 3. ANIME IMAGE (Fixed Size) --- */
.ad-anime-img {
    width: 140px; /* Fixed width prevents giant image */
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
    filter: grayscale(100%) contrast(1.1); /* Black & White filter */
}

/* --- 4. TYPOGRAPHY --- */
.ad-lock-title {
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.ad-lock-desc {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

/* --- 5. BUTTON --- */
.btn-watch-ad {
    width: 100%;
    padding: 14px;
    background: #ffffff; /* White background */
    color: #000000;      /* Black text */
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.1s;
}

.btn-watch-ad:active {
    transform: scale(0.97);
}

/* --- 6. FOOTER --- */
.ad-back-link {
    display: block;
    margin-top: 20px;
    color: #666;
    font-size: 12px;
    text-decoration: underline;
}

/* --- 7. VERIFICATION (Hidden by default) --- */
.ad-verify-container {
    display: none; /* Important: Hidden until clicked */
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
}

.ad-countdown-circle {
    width: 50px; height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: #fff;
    margin-bottom: 10px;
}

.ad-verify-text {
    color: #888; font-size: 12px;
}
