/* Advanced AdSense Manager Frontend Styles */

.aam-ad-container {
    margin: 20px 0;
    text-align: center;
}

.aam-ad-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Sticky Ads */
.aam-sticky-ad {
    position: fixed;
    z-index: 9999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.aam-sticky-top {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.aam-sticky-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.aam-sticky-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aam-sticky-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.aam-sticky-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ccc;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

/* Sticky Sidebar */
.aam-sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* Floating Banner */
.aam-floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9998;
}

/* Animations */
.aam-fade-in {
    animation: aamFadeIn 0.5s ease-in;
}

.aam-slide-in {
    animation: aamSlideIn 0.5s ease-out;
}

.aam-zoom-in {
    animation: aamZoomIn 0.3s ease-out;
}

@keyframes aamFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes aamSlideIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes aamZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .aam-sticky-left,
    .aam-sticky-right {
        display: none;
    }
    
    .aam-ad-container {
        margin: 10px 0;
    }
}

/* GDPR Placeholder */
.aam-gdpr-placeholder {
    padding: 20px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    text-align: center;
    color: #666;
}