/* AdSense 광고 스타일 */

/* 광고 컨테이너 기본 스타일 */
.ad-container {
    margin: 20px 0;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

/* 광고 로딩 상태 */
.ad-container.loading {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* 반응형 광고 */
.ad-responsive {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* 배너 광고 */
.ad-banner {
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
}

/* 사이드바 광고 */
.ad-sidebar {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .ad-container {
        margin: 15px 0;
        border-radius: 6px;
    }
    
    .ad-banner {
        max-width: 100%;
    }
    
    .ad-sidebar {
        max-width: 100%;
    }
}

/* 광고 차단 메시지 */
.ad-block-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ad-block-message i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.ad-block-message p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* 광고 로딩 스피너 */
.ad-loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 광고 오류 상태 */
.ad-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

/* 광고 성능 최적화 */
.adsbygoogle {
    display: block;
    text-align: center;
    overflow: hidden;
}

/* 광고 로딩 최적화 */
.adsbygoogle[data-ad-status="unfilled"] {
    display: none;
}

/* 광고 클릭 영역 최적화 */
.adsbygoogle a {
    display: block;
    text-decoration: none;
}

/* 다크 모드 지원 */
[data-theme="dark"] .ad-container {
    background: #2d3748;
    border-color: #4a5568;
}

[data-theme="dark"] .ad-block-message {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

[data-theme="dark"] .ad-error {
    background: #742a2a;
    border-color: #c53030;
    color: #fed7d7;
} 