.profile-page {
    padding: 20px;
}

.profile-container {
    max-width: 800px;
    margin: 80px auto 0;
}

.profile-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-name {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-emoji {
    width: 18px;
    height: 18px;
}

.profile-handle {
    font-size: 13px;
    color: #8a96a3;
}

.profile-bio {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

.profile-meta-card {
    background: #0d1117;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.profile-meta-label {
    font-size: 13px;
    color: #8a96a3;
}

.profile-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #f3f6fb;
    text-align: right;
}

@media (max-width: 700px) {

    .profile-container {
        margin-top: 70px;
    }

    .profile-avatar img {
        width: 60px;
        height: 60px;
    }

    .profile-name {
        font-size: 16px;
    }

    .profile-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .profile-meta-value {
        text-align: left;
    }
}
