/* Temel Ayarlar ve Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f8f9fa; /* Çok açık gri arka plan */
            color: #333333;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        /* Ana Taşıyıcı */
        .error-container {
            max-width: 600px;
            width: 100%;
            padding: 40px 20px;
            background-color: #ffffff; /* İçerik alanı beyaz */
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Çok hafif gölge */
        }

        /* Logo Alanı */
        .logo-container {
            margin-bottom: 40px;
        }

        .miifer-logo {
            font-weight: 800;
            font-size: 24px;
            letter-spacing: -1px;
            color: #000000;
            text-transform: uppercase;
            /* Eğer gerçek bir resim logosu kullanılacaksa burası silinip <img> etiketi eklenecek */
        }

        .miifer-logo-black {
            width: 100px;
            height: auto;
            margin-bottom: 16px;
            margin: 0 auto;
        }

        /* Başlık ve Alt Başlık */
        h1 {
            font-size: 32px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        p.sub-text {
            font-size: 18px;
            color: #666666; /* Orta ton gri */
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* Buton Tasarımı (İsteklere Göre) */
        .home-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* İstenilen Yükseklik */
            height: 50px;
            /* İstenilen Kenar Yuvarlaklığı */
            border-radius: 15px;
            /* İstenilen Renkler */
            background-color: #000000;
            color: #ffffff;
            
            text-decoration: none;
            padding: 0 32px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        /* Buton İkonu */
        .home-icon {
            margin-right: 10px;
            width: 20px;
            height: 20px;
            fill: currentColor; /* Metin rengini alır (beyaz) */
        }

        /* Hover Efekti */
        .home-button:hover {
            background-color: #333333; /* Hover'da biraz daha açık siyah */
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Mobilde başlık boyutu ayarı */
        @media (max-width: 480px) {
            h1 {
                font-size: 26px;
            }
            p.sub-text {
                font-size: 16px;
            }
        }