/* سواد مطلق وعميق */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000; /* أسود 100% */
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
}

/* كلمة سوبر انتلجنس: كبيرة، متوسطة الوضوح، وفخمة */
.top-text {
    color: rgba(255, 255, 255, 0.2); /* شفافية 20% كما طلبت */
    font-size: 2.5rem; /* حجم كبير وملحوظ */
    font-weight: 700; /* سمك متوسط إلى عريض */
    letter-spacing: 8px; /* تباعد كبير بين الحروف للقوة */
    text-transform: uppercase;
    margin-bottom: 50px;
    user-select: none;
    text-align: center;
}

/* الزر المستطيل الدائري */
.neo-button {
    padding: 20px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* تأثير عند تمرير الماوس */
.neo-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 5px;
}

.neo-button:active {
    transform: scale(0.98);
}
