* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f0c20;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* الشاشة الافتتاحية */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.intro-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: #00f2fe;
    animation: zoomIn 1.2s ease-in-out forwards;
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* الكارت الرئيسي */
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

body.loaded .container {
    opacity: 1;
    transform: translateY(0);
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* تنسيق الصورة الشخصية واللوجو */
.avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    font-size: 2.5rem;
    font-weight: 800;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nickname {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #a1c4fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 25px;
    line-height: 1.5;
    padding: 0 10px;
}

/* تصميم الأزرار */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ألوان الشبكات مع إضاءة hover */
.facebook:hover { background: #1877f2; border-color: #1877f2; }
.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.snapchat:hover { background: #fffc00; color: #000; border-color: #fffc00; }
.tiktok:hover { background: #000; border-color: #ff0050; box-shadow: -2px 2px 0 #00f2fe, 2px -2px 0 #ff0050; }
.whatsapp:hover { background: #25d366; border-color: #25d366; }
