/* Google AdSense Banner Styles */

/* Ad Container */
.ad-container {
    margin: 60px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.15);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ad-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 85, 0.3) 50%, 
        transparent 100%);
}

.ad-container:hover {
    border-color: rgba(255, 0, 85, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

/* Ad Label */
.ad-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Ad Content Wrapper */
.ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 728px;
    min-width: 320px;
    min-height: 90px;
}

/* AdSense Leaderboard (728x90) */
.adsbygoogle {
    display: inline-block;
    width: 728px;
    height: 90px;
}

/* Responsive Banner */
.ad-banner {
    width: 100%;
    max-width: 728px;
}

.ad-banner .ad-content {
    min-height: 90px;
    height: 90px;
}

/* Section Divider Style */
.ad-section-divider {
    margin: 80px auto;
}

/* Fade-in Animation */
.ad-container {
    animation: adFadeIn 0.8s ease-in-out;
}

@keyframes adFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Border */
.ad-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 85, 0.3) 50%, 
        transparent 100%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ad-container {
        margin: 40px auto;
        padding: 15px;
    }
    
    .ad-section-divider {
        margin: 50px auto;
    }
    
    /* Mobile: 320x50 (Mobile Banner) */
    .ad-content {
        max-width: 320px;
        min-height: 50px;
        height: 50px;
    }
    
    .adsbygoogle {
        width: 320px;
        height: 50px;
    }
    
    .ad-banner .ad-content {
        min-height: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .ad-container {
        border-radius: 10px;
        padding: 10px;
    }
}
