/* zoynix-ad-container basic setup */
.zoynix-ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    z-index: 10;
}

/* Inner dummy ad blocker styling for visualization */
.zoynix-ad-unit.dummy-mode {
    background-color: var(--bg-tertiary, #2a2a2a);
    border: 1px dashed var(--border-primary, #444);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted, #666);
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.zoynix-ad-unit.dummy-mode::after {
    content: "Advertisement";
    position: absolute;
    top: 5px;
    left: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Real AdSense tag styling */
.adsbygoogle {
    width: 100%;
    margin: 0 auto;
    background: transparent !important;
}

/* DESKTOP VIEW */
@media screen and (min-width: 1024px) {
    /* Sidebar Ad: Sticky Vertical Skyscraper */
    .post-sidebar .zoynix-ad-container {
        position: sticky;
        top: 100px;
    }
    .post-sidebar .zoynix-ad-unit.ad-responsive {
        width: 300px;
        height: 600px; 
    }

    /* In-Article Ad: Static Horizontal Leaderboard */
    .post-content-area .zoynix-ad-container {
        position: static;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .post-content-area .zoynix-ad-unit.ad-responsive {
        width: 100%;
        max-width: 728px;
        height: 90px;
    }
}

/* TABLET VIEW (Horizontal Banner Ad) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .zoynix-ad-container {
        position: static;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .zoynix-ad-unit.ad-responsive {
        width: 100%;
        max-width: 728px;
        height: 90px; /* Leaderboard / Horizontal Banner */
    }
}

/* SMALL MOBILE VIEW (Rectangle / Square Banner) */
@media screen and (max-width: 767px) {
    .zoynix-ad-container {
        position: static;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .zoynix-ad-unit.ad-responsive {
        width: 100%;
        max-width: 300px; /* Ensures it fits standard mobile dimensions */
        height: 250px; /* Medium Rectangle, standard for mobile feeds */
    }
}
