<style>
    /* GENEL MASAÜSTÜ STİLLERİ */
    .btn-submit:hover { 
        background: #e67e00 !important; 
        transform: translateY(-2px); 
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4) !important;
    }
    
    .blog-card { 
        background: #fff; 
        border-radius: 20px; 
        overflow: hidden; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
        border: 1px solid #eee; 
        transition: 0.3s; 
    }
    
    .blog-card:hover { 
        transform: translateY(-8px); 
        border-color: #00ced1 !important; 
        box-shadow: 0 10px 25px rgba(0,206,209,0.1) !important;
    }

    /* SAYFALAMA (PAGINATION) STİLLERİ */
    .pagination a, .pagination span { 
        padding: 10px 18px; 
        background: #fff; 
        border: 1px solid #eee; 
        border-radius: 10px; 
        text-decoration: none; 
        color: #666; 
        font-weight: bold; 
        transition: 0.3s; 
    }
    
    .pagination .current { 
        background: #00ced1 !important; 
        color: #fff !important; 
        border-color: #00ced1 !important; 
    }
    
    .pagination a:hover { 
        background: #ff8c00; 
        color: #fff; 
        border-color: #ff8c00; 
    }

    /* MOBİL UYUM (RESPONSIVE) AYARLARI */
    @media (max-width: 768px) {
        /* Üst Bölüm (Hero) Ayarları */
        .hero-section {
            padding: 30px 0 !important;
        }
        
        .hero-container {
            flex-direction: column !important; /* Giriş kartı ve yazıyı alt alta al */
            text-align: center;
            gap: 30px !important;
        }

        .promo-content h1 {
            font-size: 2.2rem !important; /* Başlığı mobilde küçült */
            line-height: 1.2;
        }
        
        .promo-content p {
            font-size: 1rem !important;
        }

        .login-card {
            max-width: 100% !important; /* Kartı ekran genişliğine yay */
            padding: 25px !important;
        }

        /* Site Tanıtım (Neden Chatyolu) Ayarları */
        .site-intro div {
            flex-direction: column !important;
            text-align: center;
            gap: 20px !important;
        }

        /* Blog Grid Ayarı */
        .blog-grid {
            grid-template-columns: 1fr !important; /* Blogları tek sütun yap */
            padding: 0 15px;
        }

        /* Sayfalama Ayarı */
        .pagination {
            flex-wrap: wrap;
            gap: 5px !important;
        }
        
        .pagination a, .pagination span {
            padding: 8px 12px;
            font-size: 14px;
        }

        /* Eğlenceli Tanıtım Yazısı Ayarı */
        .funny-promo {
            padding: 25px 20px !important;
            margin: 40px 15px 10px 15px !important;
            border-radius: 25px !important;
        }
        
        .funny-promo h3 {
            font-size: 1.5rem !important;
        }
        
        .funny-promo p {
            font-size: 1rem !important;
        }
    }
</style>