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

body {
    background: #f7f3ed; /* خلفية بيج دافئة وناعمة */
    color: #4a3e3d; /* لون نصوص بني دافئ مريح للعين */
    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: #eae2d6;
    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: 2.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #8c7a6b;
    animation: zoomIn 1.2s ease-in-out forwards;
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.05); }
    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.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 203, 187, 0.6);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(140, 122, 107, 0.12);
}

/* تنسيق الصورة الشخصية */
.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 #d4c5b9;
    box-shadow: 0 6px 18px rgba(140, 122, 107, 0.15);
    background: #e8ded4;
    font-size: 2.5rem;
    font-weight: 800;
    color: #736254;
}

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

.nickname {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5c4d42;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.9rem;
    color: #7a6b60;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 0 10px;
}

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

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    color: #5c4d42;
    text-decoration: none;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #e3d9cd;
    box-shadow: 0 4px 12px rgba(140, 122, 107, 0.05);
    transition: all 0.3s ease;
}

.link-btn:hover {
    transform: translateY(-2px);
    background: #f0e8dd;
    box-shadow: 0 6px 16px rgba(140, 122, 107, 0.12);
    border-color: #c8b9a9;
}

.link-btn i {
    font-size: 1.2rem;
    color: #8c7a6b;
}
