# Çocuk Zeka Oyunları

> Ekolsoft ile çocuk zeka oyunlarıyla gelişimi destekleyin. Öğrenirken eğlenin, problem çözme becerilerini artırın ve hayallerinizi gerçekleştirin. Hemen keşfedin!

**URL:** https://ekolsoft.com/tr/p/cocuk-zeka-oyunlari

---

.kids-games-header {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            border-radius: 25px;
            padding: 40px 20px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .kids-title {
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 15px;
            font-family: 'Segoe UI', 'Arial', sans-serif;
        }
        
        .kids-subtitle {
            color: white;
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            font-family: 'Segoe UI', 'Arial', sans-serif;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .game-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
            z-index: -1;
            margin: -3px;
            border-radius: 20px;
        }
        
        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .game-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        
        .game-title {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 15px;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        
        .game-description {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.6;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        
        .play-button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
            font-family: 'Comic Sans MS', cursive, sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .play-button:hover {
            background: linear-gradient(45deg, #ff5252, #ff6b6b);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .play-button.robotik {
            background: linear-gradient(45deg, #4ecdc4, #45b7d1);
            box-shadow: 0 8px 15px rgba(78, 205, 196, 0.3);
        }
        
        .play-button.robotik:hover {
            background: linear-gradient(45deg, #45b7d1, #4ecdc4);
            box-shadow: 0 12px 25px rgba(78, 205, 196, 0.4);
        }
        
        .play-button.maze {
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
            box-shadow: 0 8px 15px rgba(155, 89, 182, 0.3);
        }
        
        .play-button.maze:hover {
            background: linear-gradient(45deg, #8e44ad, #9b59b6);
            box-shadow: 0 12px 25px rgba(155, 89, 182, 0.4);
        }
        
        .play-button.blocks {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            box-shadow: 0 8px 15px rgba(243, 156, 18, 0.3);
        }
        
        .play-button.blocks:hover {
            background: linear-gradient(45deg, #e67e22, #f39c12);
            box-shadow: 0 12px 25px rgba(243, 156, 18, 0.4);
        }
        
        .coming-soon {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            margin-top: 30px;
            border: 2px dashed #dee2e6;
        }
        
        .coming-soon-icon {
            font-size: 3rem;
            color: #6c757d;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .coming-soon-text {
            color: #6c757d;
            font-size: 1.3rem;
            font-weight: bold;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .star {
            position: absolute;
            color: #ffd700;
            animation: twinkle 3s infinite;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        .robot-icon {
            animation: robot-move 3s ease-in-out infinite;
        }
        
        @keyframes robot-move {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-5px) rotate(-2deg); }
            50% { transform: translateY(-10px) rotate(0deg); }
            75% { transform: translateY(-5px) rotate(2deg); }
        }
        
        .maze-icon {
            animation: maze-glow 2s ease-in-out infinite;
        }
        
        @keyframes maze-glow {
            0%, 100% { filter: drop-shadow(0 0 5px rgba(155, 89, 182, 0.3)); }
            50% { filter: drop-shadow(0 0 15px rgba(155, 89, 182, 0.6)); }
        }
        
        .block-icon {
            animation: block-stack 2.5s ease-in-out infinite;
        }
        
        @keyframes block-stack {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-3px) rotate(-1deg); }
            50% { transform: translateY(-6px) rotate(1deg); }
            75% { transform: translateY(-3px) rotate(0deg); }
        }
        
        @media (max-width: 768px) {
            .kids-title {
                font-size: 2.2rem;
            }
            
            .kids-subtitle {
                font-size: 1.1rem;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .game-card {
                padding: 25px 20px;
            }
        }
    
    
    
        
            ⭐


            ✨


            🌟


            ⭐


            ✨





        # 🎮 Çocuk Zeka Oyunları 🎮

        Eğlenceli ve öğretici oyunlarla dolu dünyamıza hoş geldin!





    
    
        
            🧩


            ### Çocuk Sudoku Oyunu

            
                Şekillerle eğlenceli bir macera! Mantık yeteneğini geliştir ve 
                şekilleri doğru yerlere yerleştirerek bulmacayı çöz. 
                Çocuklar için özel olarak tasarlanmış kolay seviyeler!



            [🎯 Oynamaya Başla!](/sudoku)



        
        
            🤖


            ### Robotik Kodlama

            
                Robotu hareket ettirerek kodlama öğren! Blok tabanlı programlama ile
                robotu yönlendir, engelleri aş ve hedefe ulaş. 
                Kodlama mantığını eğlenceli şekilde öğrenmeye başla!



            [🚀 Kodlamaya Başla!](/robotik-kodlama)



        
        
            🌟


            ### Çocuk Labirent Oyunu

            
                Büyülü labirentlerde maceraya çık! Doğru yolu bul, engelleri aş ve 
                hazineyi keşfet. Problem çözme becerilerin gelişsin ve 
                her seviyede yeni zorluklarla karşılaş!



            [🗺️ Maceraya Başla!](/maze)



        
        
            🧱


            ### Blok İnşa Oyunu

            
                Renkli bloklarla hayal gücünü serbest bırak! İstediğin şekilleri oluştur, 
                yapılar inşa et ve yaratıcılığını geliştir. 
                Farklı blok türleri ile sınırsız inşa deneyimi!



            [🔨 İnşa Etmeye Başla!](/blockBuilding)



        
        
            🚀


            Yakında Daha Fazla Oyun!


            
                Renkli hafıza oyunları, eğlenceli matematik oyunları ve daha fazlası geliyor...









    
    
        🎨 Eğlenceli öğrenme deneyimi için tasarlandı 🎨