/* ============ شات ليالي العرب - CSS كامل ============ */

/* الخلفية العامة */
#login_wrap {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* الهيدر */
#header2 {
    background: transparent !important;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

#main_header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head_logo img {
    max-height: 60px;
}

#open_login_menu p {
    color: white;
    cursor: pointer;
}

/* منطقة الدخول الرئيسية */
#intro_top {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 50%, #1a1a2e 100%);
    overflow: hidden;
}

/* إضافة الرسمة التوضيحية كخلفية (استبدلها بصورتك) */
#intro_top::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 600px;
    height: 600px;
    background: url('images/illustration.png') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
    z-index: 1;
}

/* صندوق الدخول */
#login_all {
    position: relative;
    z-index: 5;
    max-width: 450px;
    width: 90%;
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* الأزرار */
.intro_login_btn,
.intro_guest_btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* الزر الأساسي (تدرج بنفسجي-وردي) */
.intro_login_btn {
    background: linear-gradient(45deg, #8e2de2, #ff6ec4);
    color: white;
    box-shadow: 0 5px 20px rgba(142,45,226,0.4);
}

.intro_login_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142,45,226,0.5);
}

/* زر الزائر */
.intro_guest_btn {
    background: linear-gradient(45deg, #ff6ec4, #8e2de2);
    color: white;
    box-shadow: 0 5px 20px rgba(255,110,196,0.4);
}

.intro_guest_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,110,196,0.5);
}

/* روابط تحت الأزرار */
.login_not_member p {
    color: #8e2de2;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}

.login_not_member p:hover {
    text-decoration: underline;
}

/* أيقونات السوشيال */
.intro_social_btn {
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.intro_social_btn:hover {
    transform: scale(1.1);
}

/* قسم المميزات */
.online_color {
    background: linear-gradient(45deg, #8e2de2, #ff6ec4);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.vip_color {
    background: linear-gradient(45deg, #1a1a2e, #4a00e0);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

/* غرف الدردشة */
.foot {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.foot nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.foot nav a {
    color: #8e2de2;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(142,45,226,0.1);
    transition: background 0.3s;
}

.foot nav a:hover {
    background: rgba(142,45,226,0.2);
}

/* الفوتر */
#main_footer {
    background: #1a1a2e;
    color: white;
    padding: 20px;
}

/* تحسينات الموبايل */
@media screen and (max-width: 768px) {
    #login_all {
        padding: 20px;
        border-radius: 20px;
    }
    
    #intro_top {
        padding: 60px 15px;
    }
    
    #intro_top::before {
        width: 300px;
        height: 300px;
        right: -50px;
    }
}