/* -------------------------------------------

CUSTOM CSS - CANLI EKLEMELER İÇİN
Version: 1.0.2
Last Updated: 2025-07-10
Cache Bust: v1.0.2

Bu dosya canlıda eklediğiniz CSS'ler için kullanılır.
Bu dosya style.css'den sonra yüklendiği için öncelik alır.

KULLANIM:
1. Bu dosyaya CSS ekleyin
2. Version numarasını artırın (örn: 1.0.3)
3. Tarayıcı cache'ini temizleyin

------------------------------------------- */

/* Canlıda eklediğiniz CSS'ler buraya gelecek */

/* Örnek: Özel buton stilleri */
.custom-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.custom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Örnek: Özel kart stilleri */
.custom-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Örnek: Özel animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Örnek: Responsive düzenlemeler */
@media (max-width: 768px) {
    .custom-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .custom-card {
        padding: 20px;
    }
}

/* Örnek: Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .custom-card {
        background: #2a2a2a;
        color: white;
    }
}

/* Cache busting için özel sınıf */
.css-updated {
    /* Bu sınıf CSS güncellemelerini zorlamak için kullanılır */
    content: "v1.0.2";
} 