/* Footer Stilleri */

/* Loading animasyonları */
@keyframes spin3d {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes grow {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Google Translate Bar'ı gizle */
.goog-te-banner-frame, .skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

/* Çeviri yapılırken metin seçimi */
.goog-te-menu-value span {
    color: transparent !important;
}

/* Reklam Modal Stilleri */
.ad-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ad-modal-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.ad-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ad-modal-close:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.ad-modal-image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.ad-modal-html {
    padding: 20px;
}

@media (max-width: 768px) {
    .ad-modal-container {
        max-width: 95%;
        border-radius: 12px;
    }
    
    .ad-modal-close {
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}
