/* Ad Slot Styles */
.ad-slot {
    width: 100%;
    background: rgba(0, 255, 65, 0.02);
    border: 1px dashed rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ad-slot:hover {
    border-color: rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.03);
}

.ad-slot-horizontal {
    min-height: 90px;
    max-height: 250px;
}

.ad-slot-vertical {
    min-height: 250px;
    max-height: 600px;
    max-width: 300px;
    margin: 1rem auto;
}

.ad-slot-square {
    min-height: 250px;
    max-height: 250px;
    aspect-ratio: 1;
}

.ad-slot-inline {
    min-height: 60px;
    max-height: 90px;
    margin: 0.5rem 0;
}

.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.ad-placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ad-placeholder-content i {
    font-size: 2rem;
    opacity: 0.5;
}

.ad-placeholder-content span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-placeholder-content small {
    font-size: 0.7rem;
    opacity: 0.5;
}

/* Hide placeholder when ad loads */
.ad-slot:has(ins.adsbygoogle[data-ad-status="filled"]) .ad-placeholder {
    display: none;
}

/* Responsive ads */
@media (max-width: 768px) {
    .ad-slot-horizontal {
        min-height: 60px;
        max-height: 100px;
    }
    
    .ad-slot-vertical {
        max-width: 100%;
        min-height: 200px;
    }
}
