* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #1b156215;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 3rem;
}

.Total {
    align-items: center;
    border: 2px #f6e40e solid;
    box-shadow: 0 2px 8px rgba(246, 227, 14, 0.594);
    border-radius: 50px;
    padding: 50px;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg,
        #582165 0%,
        #3a1b64 50%,
        #1c1562 100%);
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto; /* ✅ بدل margin-right الثابتة */
    overflow: hidden;
}

.avatar img {
    width: 150px;
    height: 150px;
    object-fit: contain; /* ✅ بدل الـ margins الكبيرة */
}

.name {
    color: #f6e40e;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: .3rem;
}

.caption {
    width: 100%; /* ✅ بدل 400px الثابتة */
    max-width: 350px;
    text-align: center;
    margin: 10px auto 20px; /* ✅ auto عشان يتمركز */
    padding: 10px;
    color: #f6e40e;
    font-size: 14px;
    line-height: 1.7;
}

hr {
    width: 90%; /* ✅ بدل 350px الثابتة */
    max-width: 350px;
    height: 1px;
    border: none;
    background: #f6e40e;
    margin: 1px auto 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(246, 228, 14, 0.6);
}

.links {
    width: 100%;
    max-width: 350px;
    display: flex;
    margin-top: -20px;
    margin-left: auto;  /* ✅ بدل الـ margin الثابتة */
    margin-right: auto;
    flex-direction: column;
    gap: 12px;
}

.link-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.link-btn {
    background: #d8d4ff7b;
    border: #ffffffb5 1px solid;
    height: 50px;
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
}

.link-btn:hover {
    background: #f2b9ff55;
    transform: scale(1.02);
}

.link-btn:active {
    transform: scale(.98);
}

.link-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(246, 228, 14, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon svg {
    width: 16px;
    height: 16px;
}

.link-label {
    color: #f6e40e;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.footer {
    margin-top: 2.5rem;
    color: rgba(246, 228, 14, .4);
    font-size: 11px;
}

/* ✅ شاشات صغيرة جداً */
@media (max-width: 400px) {
    .Total {
        padding: 30px 20px;
        border-radius: 30px;
    }
}