/* Extracted from: /index.htm */
/* Refined Hero Redesign CSS */
                    body {
                        background-color: #ffffff !important;
                    }
                    .app-container, .inner-container {
                        background-color: #ffffff !important;
                    }

                    .hero-redesign {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        gap: 70px; /* Güncellendi: 50px -> 70px, boşluğu artırmak için */
                        padding: 60px 20px;
                        background: transparent;
                        margin-bottom: 30px;
                    }

                    .hero-redesign-left {
                        flex: 1;
                        max-width: 650px;
                    }

                    .hero-badge {
                        display: inline-flex;
                        align-items: center;
                        background: #1c51bc2b;
                        color: #1c51bc;
                        padding: 8px 16px;
                        border-radius: 50px;
                        font-weight: 600;
                        font-size: 0.85rem;
                        margin-bottom: 8px;
                        border: 1px solid #1c51bc2b;
                    }

                    .hero-badge i {
                        margin-right: 8px;
                        color: #1c51bc;
                    }

                    .hero-redesign-title {
                        font-size: 3.0rem;
                        line-height: 1.15;
                        font-weight: 800;
                        color: #1e293b;
                        margin-bottom: 15px;
                        letter-spacing: -0.02em;
                    }

                    .hero-redesign-title span {
                        background: linear-gradient(135deg, #1c51bc, #1c51bc);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        display: block;
                        margin-top: 5px;
                    }

                    .hero-redesign-desc {
                        font-size: 1.05rem;
                        color: #475569;
                        line-height: 1.7;
                        margin-bottom: 20px;
                        font-weight: 400;
                    }

                    .hero-redesign-btn {
                        display: inline-flex;
                        align-items: center;
                        background: linear-gradient(135deg, #1c51bc 0%, #1c51bc 100%);
                        color: #ffffff;
                        font-size: 1.05rem;
                        font-weight: 600;
                        padding: 14px 32px;
                        border-radius: 50px;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        box-shadow: none;
                        border: none;
                    }

                    .hero-redesign-btn:hover {
                        transform: translateY(-3px);
                        box-shadow: none;
                        color: #ffffff;
                    }

                    .hero-redesign-btn i {
                        margin-left: 12px;
                        transition: transform 0.3s ease;
                    }

                    .hero-redesign-btn:hover i {
                        transform: translateX(66px);
                    }

                    .hero-redesign-right {
                        flex: 1;
                        display: flex;
                        justify-content: flex-end;
                        align-items: center;
                    }

                    .hero-redesign-img {
                        max-width: 80%; /* Güncellendi: 105% -> 110%, daha geniş */
                        height: auto;
                        transform: scale(1.1);
                        transform-origin: center right;
                        margin-right: -10px; /* Eklendi: Çok az sağa almak için */
                    }

                    /* Dark mode adjustments */
                    body.dark-mode .hero-redesign-title {
                        color: #f8fafc;
                    }
                    body.dark-mode .hero-redesign-desc {
                        color: #94a3b8;
                    }

                    @media (max-width: 991px) {
                        .hero-redesign {
                            flex-direction: column;
                            text-align: center;
                            padding: 40px 10px;
                            gap: 30px;
                        }
                        
                        .hero-badge {
                            margin: 0 auto 10px auto;
                        }
                        
                        .hero-redesign-title {
                            font-size: 2.2rem;
                        }
                        
                        .hero-redesign-desc {
                            font-size: 1rem;
                            margin-bottom: 25px;
                        }
                        
                        .hero-redesign-right {
                            justify-content: center;
                            width: 100%;
                        }
                        
                        .hero-redesign-img {
                            max-width: 95%;
                            transform: scale(1);
                            margin-right: 0; /* Eklendi: Mobil için margin-right'ı sıfırla */
                        }
                    }

                    /* --- Infinite Marquee CSS Başlangıcı (Çift Yönlü) --- */
                    .platforms-marquee-wrapper {
                        width: 100%;
                        overflow: hidden;
                        position: relative;
                        /* Sağdan ve soldan silinme efekti */
                        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                        padding: 10px 0;
                        display: flex;
                        flex-direction: column;
                        gap: 15px; /* İki satır arası boşluk */
                    }
                    .platforms-marquee {
                        display: flex;
                        gap: 15px;
                        width: max-content;
                    }
                    .marquee-left {
                        animation: scrollLeft 40s linear infinite;
                    }
                    .marquee-right {
                        /* Sağa kayması için animasyon */
                        animation: scrollRight 40s linear infinite;
                    }
                    .platforms-marquee:hover {
                        animation-play-state: paused;
                    }
                    
                    @keyframes scrollLeft {
                        0% { transform: translateX(0); }
                        100% { transform: translateX(-50%); }
                    }
                    @keyframes scrollRight {
                        0% { transform: translateX(-50%); }
                        100% { transform: translateX(0); }
                    }

                    /* Marquee İçindeki Kutuların Stilleri */
                    .platforms-marquee .platform-item {
                        flex-shrink: 0;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        background: #fff;
                        padding: 12px 24px;
                        border-radius: 12px;
                        border: 1px solid #f1f5f9;
                        text-decoration: none;
                        color: #334155;
                        font-weight: 600;
                        font-size: 0.95rem;
                        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
                        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
                    }
                    .platforms-marquee .platform-item:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 8px 15px rgba(0,0,0,0.05);
                        border-color: #e2e8f0;
                    }
                    .platforms-marquee .platform-icon {
                        font-size: 1.25rem;
                    }
                    .platforms-marquee .more-platforms {
                        flex-shrink: 0;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 12px 24px;
                        background: #f8fafc;
                        border-radius: 12px;
                        color: #64748b;
                        font-weight: 600;
                        font-size: 0.95rem;
                        border: 1px dashed #cbd5e1;
                    }
                    /* --- Infinite Marquee CSS Bitişi --- */
