* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 80px 50px;
    border-radius: 16px;
    border: 2px solid #0066cc;
    box-shadow: 0 4px 24px rgba(0, 102, 204, 0.1);
    max-width: 480px;
    width: 90%;
}

.icon-wrapper {
    margin-bottom: 32px;
}

.gear-icon {
    width: 64px;
    height: 64px;
    color: #0066cc;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h1 {
    color: #0066cc;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.loader {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    transform: scale(1.7);
}

.contact-info {
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.contact-info a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .container {
        padding: 60px 30px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}
