/* تنسيقات عامة عصرية تليق بهوية Titanium الداكنة والمعدنية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* تدرج داكن فخم ممتد على كامل الشاشة يتماشى مع سواد اللوجو الشيك */
    background: linear-gradient(135deg, #0f1319 0%, #05070a 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 650px;
    width: 100%;
    padding: 20px;
}

/* تنسيق منطقة اللوجو الحقيقي */
.brand-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    max-width: 240px; /* حجم مثالي ومناسب جداً لأبعاد لوجو تيتانيوم الخاص بك */
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.05));
}

/* نص احتياطي ذكي يظهر فقط في حال عدم توفر ملف الصورة */
.logo-backup-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* تنسيق كلمة COMING SOON */
.coming-soon {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #f3f4f6;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* فورمة الاشتراك الاحترافية */
.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto 35px auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.subscribe-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: #161c26;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.subscribe-form input::placeholder {
    color: #4b5563;
}

.subscribe-form button {
    padding: 18px 35px;
    background-color: #ffffff;
    color: #05070a;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e5e7eb;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* بريد التواصل الرسمي */
.contact-email {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 40px;
}

.contact-email a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-email i {
    margin-right: 6px;
    color: #6b7280;
}

.contact-email a:hover {
    color: #9ca3af;
}

/* أيقونات السوشيال ميديا المتبقية (فيسبوك وتويتر) */
.social-links a {
    color: #4b5563;
    font-size: 1.8rem;
    margin: 0 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-4px);
}

/* التوافق التام والتلقائي مع جميع شاشات الموبايل والتابلت */
@media (max-width: 600px) {
    .coming-soon { font-size: 2.2rem; letter-spacing: 2px; }
    .subtitle { font-size: 0.95rem; }
    .subscribe-form { flex-direction: column; background: transparent; box-shadow: none; border: none; }
    .subscribe-form input { border-radius: 30px; margin-bottom: 12px; text-align: center; background: #161c26; padding: 15px; }
    .subscribe-form button { border-radius: 30px; padding: 15px; width: 100%; }
    .main-logo { max-width: 180px; }
}