        body {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #000;
            color: #fff;
            font-family: 'Arial', sans-serif;
			user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        .container {
            text-align: center;
            padding: 20px;
            max-width: 100%;
            box-sizing: border-box;
        }

        .logo {
            width: 80%;
            max-width: 400px;
			user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }
		
		        img {
            pointer-events: none;
        }

        @keyframes rotateLogo {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(-360deg);
            }
        }

        .message {
            margin-top: 20px;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .under-construction {
            font-size: 1.8rem;
            font-weight: bold;
            margin-top: 10px;
        }

        .loader {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #000000;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 2s linear infinite;
            margin: 30px auto;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Mobil cihazlar için uyumluluk */
        @media (max-width: 600px) {
            .message {
                font-size: 1rem;
            }

            .under-construction {
                font-size: 1.5rem;
            }

            .logo {
                width: 70%;
            }

            .loader {
                width: 40px;
                height: 40px;
            }
        }