* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #0a0b10 0%, #020204 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.ios-container {
    text-align: center;
    max-width: 390px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.avatar-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

/* بەشی کۆدی ماتریکس */
.matrix-divider {
    width: 100%;
    height: 45px;
    margin: 15px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #00ff41;
    overflow: hidden;
    line-height: 15px;
    letter-spacing: 4px;
    opacity: 0.6;
    pointer-events: none;
    direction: ltr;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* بەشی ئایکۆنە ئاسۆییەکان */
.horizontal-dock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 22px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 13px;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.icon-btn i {
    font-size: 1.4rem;
}

.icon-btn:active, .icon-btn:hover {
    transform: scale(0.9);
    background: rgba(0, 255, 65, 0.1);
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

/* ستایلی دیسکریپشن */
.description-box {
    max-width: 320px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.college-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    font-family: monospace;
}

/* ڕەنگی ئایکۆنەکان */
.fa-facebook { color: #1877f2; }
.fa-instagram { color: #e1306c; }
.fa-tiktok { color: #ffffff; }
.fa-snapchat { color: #fffc00; }
.fa-whatsapp { color: #25d366; }