/* تنسيقات الصفحة الرئيسية */
body {
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
    /* --- الإضافة لمنع السكرول العرضي تماماً --- */
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.hero-section {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: auto;
    animation: fadeInScale 0.6s ease-out;
    /* --- التأكد إن المرجن والبادينج مبيخرجوش بره الشاشة --- */
    box-sizing: border-box;
}

.main-title {
    color: #1e7e34;
    font-weight: 800;
    margin-bottom: 20px;
}

.icon-box {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.btn-custom {
    padding: 18px 30px;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-register {
    background: linear-gradient(45deg, #1e7e34, #28a745);
    color: white;
    border: none;
}

.btn-query {
    background: white;
    color: #1e7e34;
    border: 2px solid #1e7e34;
}

.btn-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: white;
}

.btn-query:hover {
    background-color: #1e7e34;
    color: white;
}

/* أنيميشن الدخول */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* تحسينات للموبايل */
@media (max-width: 576px) {
    body {
        /* لمنع أي سكرول طولي زائد لو المحتوى بسيط */
        height: 100dvh;
    }
    .hero-section {
        padding: 30px 20px;
        margin: 15px;
        /* ضمان أن العرض لا يتخطى الشاشة مع الـ Margin */
        max-width: calc(100% - 30px);
    }
    .main-title { font-size: 1.5rem; }

    /* منع الـ Hover Effect إنه يعمل مشاكل في التاتش */
    .btn-custom:hover { transform: none; }
}
